Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I receive an error on # 14 and #23 when I try to console log the firstStory and the secondStory. It mentions spacing but I am unsure

Your code so far

Dont mind the cohesiveness, I have just been trying to get the spacing right.

let adjective = "Professional"
let noun = "Hooper"
let verb = "fighting time"
let place = "San Diego"
let adjective2 = "huge"
let noun2 = "Tacos"

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

adjective = "Amateur"
noun = "Football"
verb = "workout time"
place = "City Heights"
adjective2 = "small"
noun2 = "Burgers"

let secondStory = "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("Second story: " + secondStory)

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

What are tests 14 and 23?

  1. You should use the correct story format for the first story:
"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]."

. Pay attention to spaces. 23. You should use the correct story format for the second story:

"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]."

this is the feedback I received

Welcome to the forum @OrganicCodeMan

AmateurFootball

Looks like you have spacing issues.
Carefully examine the console.

Happy coding