Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

What’s my wrong in this codding? I take off all space

Your code so far

let adjective="tiny"
let noun="boy"
let noun2="petit gateau"
let adjective2="big"
let place="city"
let verb="fed"
const firstStory="Once upon a time, there was a(n) "+adjective+" "+noun+" who loved to eat "+noun2+"."+" The " +noun+ " lived in a "+adjective2 +" "+ place+" and had "+adjective2+" nostrils that breathed fire when "+verb+"."
console.log(firstStory)

adjective="brave"
adjective2="huge"
noun= "dragon"
noun2= "pizza"
verb= "angry"
place="dark cave"

const secondStory="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(secondStory)


Your browser information:

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Hi @Tablitum

You should not have adjective2 before the place variable.

Did the nostrils breathed fire, or blew fire?

Some words are missing between the word when and the verb.

The first console log includes text and a variable.

Happy coding