function getRandom(min, max) {<br /> return Math.floor(Math.random() * (max - min + 1)) + min<br /> }function getRandom(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min }