Build a Sentence Maker - Build a Sentence Maker

since adding step 23, both step 14, and step 23 now fail. Ive not made any changes to 14

Your code so far

//1-12
let adjective = "happy";
adjective = 'angry';
let noun = "wizard";
noun = 'pirate';
let verb = "eat";
verb = 'vomiting';
let place = "hogwarts";
place = 'cave';
let adjective2 = "hungry";
adjective2 = 'angry';
let noun2 ="witch";
noun2 = 'hamburgers';
//first story 
//13,14
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 + "." ;
//15,
console.log("First story: "+ firstStory)
//16

//23,second-story

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 it was " + verb + "." ;
//24
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/134.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Look at the console. What do you see there for story 1 and story 2?

I still cant tell what the error is

First story: Once upon a time, there was a(n) angry pirate who loved to eat hamburgers. The pirate lived in a cave and had angry nostrils that blew fire when it was vomiting.
Second story: Once upon a time, there was a(n) angry pirate who loved to eat hamburgers. The pirate lived in a cave and had angry nostrils that blew fire it was vomiting.

The error is that the stories are exactly the same. You should have two different stories.

if you do this, when do you think the value "happy" is used?