Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

can anyone pleasee tell me what i did wrong?..ive been at this for hours and it keeps saying i should use the correct format for the first story

Your code so far

let adjective = "fiery"

let noun = "Dragon"

let verb = "sleeping"

let place = "huge mountain"

let adjective2 = "large"

let noun2 = "small animals"

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);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Welcome to the forum @deborahikahose!

The story template says, "there was a(n) ". You must use the story template exactly as written with just the variables replaced.

Happy coding!

Thanks I’ve done that

Tho it’s now saying I should assemble the first story using the variables I declared in the correct order

Please post your updated code.

When you enter a code block into a forum post, please precede it with three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add the backticks.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Thanks for the backtick tip

i looked through the code again and found the error i made