Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I am not able to pass Nos 14 and 23: Help me please,

Your code so far

let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;


adjective = "big";
noun = "lion";
verb = "walking";
place = "park";
adjective2 = "anormous";
noun2 = "zebras";

let firstStory = "Once upon a time, there was a "+ 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 = "elegant";
noun = "gorilla" ;
verb = "playing";
place = "forest";
adjective2 = "beautiful";
noun2 = "bananas";

let secondStory = "Once upon a time, there was an " + 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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

a(n)

This should be in both stories, not one or the other.

It has passed. Thank you for the gaidance.

Please can you not create duplicate topics for the same challenge or step. Thank you.

1 Like