Q. How to get a random number between 5 and 9 inclusive?
β
Correct Answer: (D)
Math.floor((Math.random() * 5) + 5);
You must be Logged in to update hint/solution