Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Where were I can need to change to pass my all the test cases.

Your code so far

let adjective = "Big";
let noun = "Forest";
let verb = "Be";
let place = "Amazon";
let adjective2 = "Chocolate";
let noun2 = "Elephant";

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.olg("First story:" + firstStory);

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.1 Safari/605.1.15

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Do you see an error message in the console?

You can start with that.

Here are some troubleshooting steps you can follow. Focus on one test at a time:

  1. Are there any errors or messages in the console?
  2. What is the requirement of the first failing test?
  3. Check the related User Story and ensure it’s followed precisely.
  4. What line of code implements this?
  5. What is the result of the code and does it match the requirement? (Write the value of a variable to the console at that point in the code if needed.)

If this does not help you solve the problem, please reply with answers to these questions.