Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

please review user story 5, or look carefully at the error message from the tests. You must use the exact format indicated in them.

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.

this is what it gives me,



// 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.

and this is the format requested in the message

in what way it matches this?

make sure that you have the same exact text as requested, which is not the same as the variable name

i finally got it, I appreciate the help. Thank You