function randomNumber(min, max) { return Math.floor(Math.random() * (max - min) + min); } module.exports = {randomNumber}