Basic JavaScript - Word Blanks

Tell us what’s happening:

why isn’t my test going through i have put non word characters in between but still same result

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"+myNoun+",saw a"+myAdjective+",boy and he"+myVerb+",up so"+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/130.0.0.0 Safari/537.36 Edg/130.0.0.0

Challenge Information:

Basic JavaScript - Word Blanks

Welcome to the forum @joseph129088

You can console.log() the variable to see the output.

Happy coding