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