Basic JavaScript - Word Blanks

Tell us what’s happening:

I have tried to create a complete sentence with the provided variables several times but nothing has worked so far. Does anyone know how to do it?

Your code so far

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

// Only change code below this line
const wordBlanks = "Our neighbour just moved in. Alongside their belongings they had a large " + myNoun + "with a long leash around it's neck" + "." + "The dog was very " + myAdjective + "and brown in colour" + "." + "When the neighbours were out playing fetch and catch in the park, it " + myVerb +"fst with speed to get the ball" + "." + "The dog reached where the ball was " + myAdverb + "in just a few seconds" + ".";
 ; // 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/124.0.0.0 Safari/537.36

Challenge Information:

Basic JavaScript - Word Blanks

They want you to use the variables, not the values of the variables.
Here is an example, using the variable myCat:

const myCat = "cat";
const wordBlanks = "My friend has a beautiful " + myCat + " called Molly.";
'''