Quale di queste istruzioni JavaScript genera un numero casuale compreso tra 5 e 9 inclusi?
a. parseInt((Math.random() * 5) + 4);
b. parseInt((Math.random() * 4) + 4);
c. parseInt((Math.random() * 5) + 5);
d. parseInt((Math.random() * 4) + 5);
?? Grazie!!