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