Tell us what’s happening:
I cannot find my mistake here please help me, I have tried everything.
Your code so far
// let adjective = "brave";
// let noun = "dragon";
// let verb = "angry";
// let place = "mountain";
// let adjective2 = "fiery";
// let noun2 = "sheep";
// let firstStory;
// 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("First story: " + firstStory);
// adjective = "clever";
// noun = "fox";
// verb = "excited";
// place = "forest";
// adjective2 = "shiny";
// noun2 = "grapes";
// let secondStory;
// 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("Second story: " + secondStory);
// let adjective = "enormous";
// let noun = "dragon";
// let verb = "angry";
// let place = "volcano";
// let adjective2 = "golden";
// let noun2 = "pizza";
// 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("First story: " + firstStory);
// adjective = "tiny";
// noun = "wizard";
// verb = "confused";
// place = "library";
// adjective2 = "sparkly";
// noun2 = "tacos";
// 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("Second story: " + secondStory);
let adjective = "brave";
let noun = "dragon";
let verb = "angry";
let place = "mountain";
let adjective2 = "big";
let noun2 = "pizza";
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("First story: " + firstStory);
// Reassign values
adjective = "tiny";
noun = "cat";
verb = "sleepy";
place = "garden";
adjective2 = "pink";
noun2 = "fish";
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("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/146.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker