BienBoy
2025-02-01 c1e365fea09aafda387cac12fdff43d28c598979
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}