Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I don’t quite see what’s the problem here. You should assemble your first story using the variables you declared in the correct order. This is what I’m missing also the same applies for secondStory

Your code so far

let adjective = "extroverted";
let noun = "Dawg";
let verb = "itchy";
let place = "Apartment";
let adjective2 = "unique";
let noun2 = "Pizza";
const 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 = "shy";
noun = "Dude";
verb = "tickled";
place = "Rv";
adjective2 = "weird";
noun2 = "Taco's";
const 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/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

remove the line breaks when you are delcaring firstStory and secondStory, and you will stop getting the false negative

1 Like

Thanks for the help I finally got it down