Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Stuck on step 15:
15. You should log your first story using the message “First story: [firstStory]”.

Your code so far

let adjective, noun, verb, place, adjective2, noun2;
adjective = "noisy";
noun = "engineer";
verb = "running";
place = "home";
adjective2 = "quiet";
noun2 = "salesman";
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);



Your browser information:

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

It is almost correct, my advice, without giving you the answer would be to look at what is logged to the console. Pay close attention to the placement of your spaces.

1 Like

not only spaces, also uppercase and lowercase letters, those also need to match the given text

1 Like

YES, Thank You ILM - Issue was in the uppercase, changed and passed it.