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