Basic JavaScript - Word Blanks

Tell us what’s happening:
Describe your issue in detail here.
Good morning to you all.
Can someone help me out please. After doing all of this the code ain’t passing
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" + myAdjective + myNoun + myVerb + myAdverb + "."; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

Please refer to the fourth test of this challenge for this issue.

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).

I believe I did all that, using “My” as an additional word of my choice and the concatenation sign, + for separation

1 Like

What then please, I’m I getting wrong?

Add space i.e. " " between my and every variable. That will solve the challenge.

Thank you very much for your assistance.
However I later got it after trying it much sweaty.
God bless you

1 Like

Glad to help. You are welcome.

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