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