I've tired all I know, cam someone please explain especially the one enclosed with the #-tag

Tell us what’s happening:
Describe your issue in detail here.

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" + " cat and " + myNoun + "are small and " + myAdjective + ", they can eat and " + myVerb + "fast and " + myAdverb + "."; // Change this line
// Only change code above this line

It keeps showing this
/ running tests

[wordBlanks]should contain all of the words assigned to the variables [myNoun], [myVerb], [myAdjective] and [myAdverb] #separated by non-word characters (and any additional words in your madlib)#. // tests completed

Ive tired others, cam someone please explain especially the one enclosed with the #-tag


**Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36</code>

**Challenge:**  Word Blanks

**Link to the challenge:**
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/word-blanks

The error is saying that they don’t want the wordsTouchingLikeThis. Toss this at the bottom of the code and see if you can find the errors. console.log(wordBlanks)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.