Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

It keeps saying that I need to check the spaces, what am I missing?

Your code so far

let adjective = "cute";
let noun = "cat";
let verb = "running";
let place = "mountain";
let adjective2 = "beautiful"
let noun2 = "dogs";

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)

adjective = "sticky";
noun = "apple";
verb = "falling";
place = "church";
noun2 = "cars";

let secondStory;


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 (iPhone; CPU iPhone OS 16_7_16 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1 OPT/6.6.2

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

Hi @valchuminodevop,

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

Happy coding

The main issue is the missing space after the period. You have "dogs." + "The" which produces dogs.The. Change it to "dogs. The". Also add a semicolon after let adjective2 = "beautiful"; and check that your console.log strings match the exact spacing expected by freeCodeCamp.