Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Still failing test 14 and 15, even though my second story runs just fine and passes all the tests. What did I do wrong? It’s showing up fine in the console too.

Your code so far

let adjective = "gigantic";
let noun = "dragon";
let verb = "flying";
let place = "cave";
let adjective2 = "hairy";
let noun2 = "humans";

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 " + adjective + " nostrils that blew fire when it was " + verb + ".";

console.log("First story: "+ firstStory);

adjective = "tiny";
noun = "mouse";
verb = "angry";
place = "hole";
adjective2 = "furry";
noun2 = "cheese";

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/149.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-sentence-maker/66c057041df6394ca796bf33.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hey @m055

Make sure your variable names are matching with the user story provided.

Welcome to the forum @m055

What kind of nostrils did the dragon have in the first story?

Happy coding

Thank you! Can’t believe that minor mistake went over my head