what does math.random generate code example
Example: javascript get random integer in given range
const randomInteger = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;
const randomInteger = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;