Help with Javascript Madlib please

Tell us what’s happening:
So its telling me "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 in your madlib)."

And as you can see bellow, i havent been asked to use the function tag while every pass mark on my left hand corner of my screen below has been checked. what am i doing wrong, cause i placed the seperators right as needed?

Your code so far


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

var wordBlanks = "My "+ myAdjective + " " + myNoun + ", and i " + myVerb + " " + myAdverb + "ti the store" + ".";
// Only change this line;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/word-blanks

You have written "My big dog, and i ran quicklyti the store.", your issue is after quickly, there is a space or other non-word character missing

Thanks, so pissed at my self for making these simple mistakes, while getting the constructions right. hope future IDE’s will help out

it work for me:
var myNoun = “dog”;

var myAdjective = “big”;

var myVerb = “ran”;

var myAdverb = “quickly”;

// Only change code below this line

var wordBlanks = " “+myNoun+” “+myVerb+” “+myAdjective+” "+myAdverb

; // Change this line

// Only change code above this line