How I can complete de sentence and defined the "worldBlanks" to?

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

Tu código hasta el momento


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

// Cambia solo el código debajo de esta línea
var wordBlanks = "the " + myAdjective + "" + myNoun + "" + myVerb + "" + myAdverb + "." ; // Cambia esta línea

console.log(worldBlanks);
// Cambia solo el código encima de esta línea

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 Edg/93.0.961.47

Desafío: Palabra en blanco

Enlaza al desafío:

1 Like

Hi @jaesmusicnyc !

Welcome to the forum!

Two things.

No.1:
You misspelled wordblanks here

No.2:
You have spacing issues.

This what your sentence currently looks like

Once you fix the spacing issues, then the test will pass.

1 Like