Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

task 15 and 25 isnt checking. This is the error; 15. You should assemble your first story using the variables you declared in the correct order. 25. You should assemble your second story using the variables you declared in the correct order.

Your code so far

let adjective = "gorgeous";
let noun = "lady";
let verb = "hot";
let place = "hut";
let adjective2 = "wide";
let noun2 = "apples";

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 = "sparkling";
noun = "river";
verb = "flowed";
place = "hidden cave";
adjective2 = "enchanted";
noun2 = "crystals";

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

The extra line breaks when declaring your story strings are confusing the tests.

Thank you. The issue has been resolved.

1 Like