Basic JavaScript - Word Blanks

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

// Only change code below this line
const wordBlanks = "My" + myAdjective + "is very"+ myNoun +"and he literally"+ myVerb + "so"+ myAdverb + "."; // Change this line
// Only change code above this line

Does anyone have any idea on how to solve this newer version of the challange?
I tried the older solutions provided but couldn’t work (or maybe I’m just dumb, lol).

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