Kizspy | Question: 26
(Choose 1 answer)
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
} What is the output of the above code?
A. returns a random number between min (excluded) and max (excluded)
B. returns a random number between min (included) and max (included)
C. returns a random number between min (included) and max (excluded)
D. None of the others