Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

my issue is that number 15 and 25 questions are not checking and i have tried various methods.

Your code so far

let adjective = "gorgeous";
 let noun = "fola";
 let verb = "hot";
 let place = "hut";
 let adjective2 = "wide";
 let noun2 = "Apples";


 let firstStory = "Once upon a time, there was a(n) gorgeous fola who loved to eat Apples. The fola lived in a hut and had wide nostrils that blew fire when it was hot.";

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

 adjective = "sparkling",
 noun = "river",
 verb = "flowed",
 place = "hidden cave",
 adjective2 = "enchanted",
 noun2 = "crystals";

 let secondStory = "Once upon a time, there was a(n) sparkling river who loved to eat crystals. The river lived in a hidden cave and had enchanted nostrils that blew fire when it was flowed.";

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

https://www.freecodecamp.org/learn/full-stack-developer/lab-sentence-maker/build-a-sentence-maker

What are tests 15 and 25?

What specific lines of your code do you think should satisfy those tests?

where are you using the variables to build the sentence?