export function randomNum (n, m) { return Math.floor(Math.random() * (m - n + 1) + n) }