Tell us what’s happening:
I have looked at different examples and multiple posts, a few with the same set up as I made, but I can’t figure out if its the spaces, the terms I used but from the directions I think I have it set right, but its not passing. Some ideas of how i can fix this
Your code so far
const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";
// Only change code below this line
const wordBlanks = "My" + myNoun + "is" + myAdjective + ", and he" + myVerb+ "towards the mail man" + myAdverb + "."; // Change this line
// Only change code above this line
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Word Blanks