i can not seem to properly log the stories, is there a specialized way to do that?
Your code so far
let adjective = "lukewarm"
let noun = "stove"
let verb = "running"
let place = "hotel"
let adjective2 = "hot"
let noun2 = "shower"
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("firstStory: " + firstStory)
adjective = "freezing"
noun = "freezer"
verb = "sleeping"
place= "forest"
adjective2 = "cold"
noun2 = "bath"
let secondStory = "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("secondStory: " +[secondStory] )
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36
strings are case sensitive and that includes space, uppercase and lowercase letters you have to type exact what required so check your 16th and 26th condition and their solution you coded again.
// running tests
16. You should log your first story using the message "First story: [firstStory]".
26. You should log your second story using the format "Second story: [secondStory]".
// tests completed
// console output
firstStory: Once upon a time, there was a(n) lukewarm stove who loved to eat shower. The stove lived in a hotel and had hot nostrils that blew fire when it was running.
secondStory: Once upon a time, there was a(n) freezing freezer who loved to eat bath. The freezer lived in a forest and had cold nostrils that blew fire when it was sleeping.