Basic JavaScript - Word Blanks

Hi Everyone Here is the Answer of this Question.
const wordBlanks = "The " + myAdjective + " " + myNoun + " " + "is " + myVerb + " " + myAdverb + “.”;
console.log(wordBlanks);
.

Your code so far

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

// Only change code below this line
const wordBlanks = ""; // 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/111.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

Don’t add extra lines of code. Only change the one line between the comments.

const wordBlanks = "The " + myAdjective + " " + myNoun + " " + "is " + myVerb + " " + myAdverb + “.”;
console.log(wordBlanks);

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key. You may also be able to use Ctrl+e to automatically give you the triple back ticks while you are typing in the this editor and the cursor is on a line by itself. Alternatively, with the cursor on a line by itself, you can use the </> button above the editor to add the triple back ticks.