Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Line 17 I keep getting that I have to use the correct story format. Can someone please tell me if I am doing something wrong

Your code so far

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

adjective = "fat";
noun = "cat";
verb = "playing";
place = "house";
adjective2 =" silly";
noun2 = "dog";

let firstStory;
//Line 17 I keep getting that I have to use the correct story format. Can someone please tell me if I am doing something wrong//
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);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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 believe the challenge wants you to use a template string for the first story.

It’s usually a bad idea to declare a variable with no initial value.

Look closely at what is showing in the preview window and pay attention to spaces. Also, the quotes around the string in the instructions aren’t intended to be included literally in the string.

Thanks for your input. I was indeed missing a space.

are you sure you should use quotes in the string?

Good evening, I was not supposed to use quotes. That was another correction that I made.