Eric
2024-02-27 3ec697e4bd7a6e05660b5f62b48cd91aea9e1e84
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}