blob: e7414c2323c89f765adccb32ea1a65adf48d1781 [file] [log] [blame]
function getRandomInt(max) {
return Math.floor(Math.random() * Math.floor(max));
}
let value = getRandomInt(10);
if (value > 5)
value = 5;