This program generates a random number between minimum and maximum value.
let min = 0;
let max = 10;
console.log(Math.floor(Math.random() * (max - min + 1)) + min);Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.