My Code is not running

Tell us what’s happening:
Describe your issue in detail here.
(Note I did find the solution out before looking at the solution program)
I have even looked through the solution and the problem is still saying that I need to include all 4 strings
Your code so far

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

// Only change code below this line
const wordBlanks = "The " + myAdjective+ ""+myNoun+ ""+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/102.0.0.0 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

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).
This is the error I keep on getting

this is important - in what why have you separated the words with non-word characters?

I did not space them, Thank you for pointing that out to me!

1 Like

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