//returns a random number between min and max const randomNumbers = (min, max) => { return Math.round(Math.random() * (max - min)) + min; }