Tell us what’s happening:
I can’t get number 14, 24 true I made it correctly but l don’t know why?
Your code so far
let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
adjective="hungry";
noun="girl";
verb="sleep";
place="France";
adjective2="rainey";
noun2="strawberry";
let firstStory;
firstStory = "Once upon a time, there was a(n) "+ [adjective]+" "+[noun]+" who loved to eat "+ [noun2] +". The "+[noun] + " lived in "+[place]+" and had "+[adjective2]+" nostrils that blew fire when it was "+[verb]+".";
console.log("First story: " + firstStory);
let secondStory;
adjective = "young";
noun = "boy";
verb = "running";
place = "the forest";
adjective2 = "the biggest";
noun2 = "grapes";
secondStory = "Once upon a time, there was a(n) " + [adjective] + " " + [noun] + " who loved to eat " + [noun2] + ". The " + [noun] + " lived in " + [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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker