Basic JavaScript - Word Blanks

Tell us what’s happening:
Describe your issue in detail here.
its my error 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 of your choice)
so any help please
Your code so far

const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";

// Only change code below this line
const wordBlanks = "it was" + "myAdjective" + "myNoun" + "," + "and we" + "myVerb" + "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/89.0.4389.114 Safari/537.36 Edg/89.0.774.68

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

you need to have a space between each word
right now you have something like “it wasbigdog…”

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