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