Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I did everything correct but it keeps saying " 15. You should assemble your first story using the variables you declared in the correct order. and 25. You should assemble your second story using the variables you declared in the correct order." lesson on “build a sentence maker.” thanks!

Your code so far

// declaration of variables:
let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
adjective = "brave";
noun = "cat";
verb = "hungry";
place = "house";
adjective2 = "pink";
noun2 = "mice";
let firstStory;
firstStory = "Once upon a time, there was a(n) brave cat who loved to eat mice. The cat lived in a house and had pink nostrils that blew fire when it was hungry.";
console.log("First story: " + firstStory);
// reassigning new value to variables 
adjective = "brave";
noun = "dragon";
verb = "angry";
place = "castle";
adjective2 = "fiery";
noun2 = "apples";
let secondStory = "Once upon a time, there was a(n) brave dragon who loved to eat apples. The dragon lived in a castle and had fiery nostrils that blew fire when it was angry.";
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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

I do not see you using the variables here, like djective, verb, place and so on

So how to do it then because i’m out of ideas

Do it by concatenating text with the variables you’ve made, like this:

But insert the variables you’ve defined into the story.