Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I need help with step 14 and step 23 . I am using the exact format but it’s still not right. what do I do ?

Your code so far

let adjective
let noun
let verb
let place 
let adjective2
let noun2
adjective =  "delicious cake "
 noun = "brandon"
 verb = "jumping"
 place = "target "
adjective2 = "tall boy"
 noun2 = "soccer"
let firstStory;
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);
let secondStory
adjective = "big"
noun = "dog"
verb = "swimming"
place = "pool"
adjective2 = "red car"
noun2 = "jojo"
secondStory =  "As a happily married husband, I have a " + [adjective] + " " + [noun] + " that loves so much to eat " + [noun2] + ". My " + [noun] + " Lives with me near " + [place] + " and she has a " + [adjective2] + " smile and whenever i see her I like to " + [verb] + " her."
console.log("Second story: " + secondStory)

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

What are tests 14 and 23? Which lines of code do you think meet those tests?

  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

test 23. 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]." . Pay attention to spaces.

Please answer both of my questions.

test 14 is saying i should use correct format and pay attention to spaces as well as test 23

Please read and answer both of my questions. You have only answered the first question.

lines 14 and line 23 is the one that i think meets the coding format.

Which lines are those? Line numbers are not in your post.

lines 14 and lines 23.

I’m not sure you are actually reading what I type? There are no line numbers in your post.

I’m not sure why these are two separate lines but I don’t imagine the tests like that

what do you mean two separate lines

You declare the variable and give it a value on two separate lines. Why?

it automatically moves my cursor over to the next space

I don’t understand what you mean and that seems unrelated to what I said.

This is two lines. Why did you not put this on one line? I would put this on one line.

all of it at the very top ?

I don’t know what you mean

you said it’s two lines.

how is it two lines ? im confused

Do you know what a line is? I’m not sure how else to say that you typed the part of your code I quoted on two different lines.