Ikko Eltociear Ashimine
2023-12-04 a8e364d08c1e16f8d11dedd26911ff003167682d
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}