Its saying use the correct story format but I swear it’s exactly the same as the format. Specifically number14
Your code so far
let adjective = "fluffy "
let noun = "Frog"
let verb = "annoyed"
let place = "swamp"
let adjective2 = "gaping"
let noun2 = "bugs"
let firstStory = "Once upon a time, there was a(n) " + adjective + noun + " who loved to eat " + noun2 +
". The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + "."
console.log("First story: " + firstStory)
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 OPR/128.0.0.0
let firstStory = "Once upon a time, there was a(n) " + adjective + noun + " who loved to eat " + noun2 + ". The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + “.”
First story: Once upon a time, there was a(n) fluffy Frog who loved to eat bugs. The Frog lived in a swamp and had gaping nostrils that blew fire when it was annoyed.