majic31
2025-08-14 5115a066c971b2380c98f9be168e14869053eda1
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}