``` js function getRandom (min, max) { return Math.floor(Math.random() * Math.abs(max - min + 1) + min) } ```