Build a Fortune Teller - Build a Fortune Teller

Tell us what’s happening:

I need help number 9 it says if random number equals 1 then fortune1 should be 1 and so on.

Your code so far

let fortune1 = "Your cat will look very cuddly today."
let fortune2 = "The weather will be nice tomorrow."
let fortune3 = "Be cautious of your new neighbors."
let fortune4 = "You will find a new hobby soon."
let fortune5 = "It would be wise to avoid the color red today."
let randomNumber = 1
fortune1 = Math.random()
console.log(fortune1)
let selectedFortune = randomNumber
console.log(selectedFortune)
fortune1 = randomNumber
fortune1 = "Your cat will look very cuddly today."

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Fortune Teller - Build a Fortune Teller

Your random number should be generated programmatically. Refer to this resource if you need help with that:

Math.random() - JavaScript | MDN