Index: node_modules/es-toolkit/dist/math/randomInt.mjs
===================================================================
--- node_modules/es-toolkit/dist/math/randomInt.mjs	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
+++ node_modules/es-toolkit/dist/math/randomInt.mjs	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
@@ -0,0 +1,7 @@
+import { random } from './random.mjs';
+
+function randomInt(minimum, maximum) {
+    return Math.floor(random(minimum, maximum));
+}
+
+export { randomInt };
