Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I genuinely don’t understand what’s wrong with my code! Where am I wrong?

Your code so far

let adjective = "big"
let noun = " boy"
let verb = " angry"
let place = " house "
let adjective2 = " massive"
let noun2  = " tacos."
let firstStory = "Once upon a time, there was a(n) [adjective] [noun]" + adjective + noun + " who loved to eat [noun2] " + noun2 + " The [noun]  " + noun + " lived in a [place] " + place + " and had [adjective2]" + adjective2 + " nostrils that blew fire when it was [verb]" + verb + "."
console.log ("First story: " + firstStory);

//Second Story
adjective = "small";
noun = "girl"
verb = "mad"
place = "hut"
adjective2 = "tiny"
noun2 = "pizza"
let secondStory = "Once upon a time, there was a(n) [adjective] [noun]" + adjective + " " + noun + " who loved to eat [noun2] " + noun2 + "The [noun]  " + noun + " lived in a [place] " + place + " and had [adjective2]" + adjective2 + " nostrils that blew fire when it was [verb] " + verb + "."

console.log("Second story: " + secondStory);

Your browser information:

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

hello @Boo11 welcome to the forum!

You have to replace the [variable-name] parts of the story with your actual variables.

For example - You should replace the [adjective] in the story with your adjective variable and so on.

PS - Make sure the spacing and punctuation strictly matches with the provided story format in both the stories.