Build a Sentence Maker - Build a Sentence Maker

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

Welcome to the forum @green17112005 !

After removing the comments, your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

Happy coding!