Q. How to get a random number between 5 and 9 inclusive? (A) Math.floor((Math.random() * 5) + 4); (B) Math.floor((Math.random() * 4) + 4); (C) Math.floor((Math.random() * 4) + 5); (D) Math.floor((Math.random() * 5) + 5); ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (D) Math.floor((Math.random() * 5) + 5);