Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Can’t pass step 14 but I typed it the same way as second story

Your code so far

let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;

let firstStory;

adjective =("fearless")
noun =("dragon")
verb =("marching")
place =("cave")
adjective2 =("gigantic")
noun2 =("fish")

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 =("dinosaur")
verb =("walking")
place =("rock")
adjective2 =("wide")
noun2 =("crocodiles")

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/605.1.15 (KHTML, like Gecko) Version/26.5.2 Safari/605.1.15

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-sentence-maker/66c057041df6394ca796bf33.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @Pedro90,

A variable assignment has this syntax: variableName = "the value"

The value should not be wrapped in parentheses.

Remove those and your code should pass. Everything else looks good.

Happy coding

I will try that again thanks. I have reset the assignment 3 times and I have written them with and without parentheses and still not pass but I’ll give it a try again just in case. Thank you very much for your time and help!

I took out the parentheses and it did work thanks! I passed it!