// Returns a number between min and max function getRandomArbitrary(min, max) { return Math.random() * (max - min) + min; }