f304a1580
1 2 3 4 5 6 7 8
// high excluded function randomInt (low: number, high: number) { return Math.floor(Math.random() * (high - low) + low) } export { randomInt }