Basic JavaScript - Word Blanks

Tell us what’s happening:
no me quiere validar mi respuesta, ya he mirado muchos videos y hicelo mismor que escribieron y nada, simplemente no me deja

Your code so far

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

// Only change code below this line
const wordBlanks = "my " + myNoun + "is " + myAdjective + "and " + myVerb + "" + myAdverb//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/107.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

What do you see if you try

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

// Only change code below this line
const wordBlanks = "my " + myNoun + "is " + myAdjective + "and " + myVerb + "" + myAdverb//Change this line.
console.log(wordBlanks);
// Only change code above this line

esto, no creo que se alla solucionado

Right. I wasn’t writing the answer for you. We can’t do that. You should look at the output from console.log and see what is wrong with your string.