Worldbank challenge

Tell us what’s happening:
Please how can i solve the worldbank challenge on freecode

Your code so far


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

// Only change code below this line
var wordBlanks = '"The " + myAdjective +" "+ myNoun +" "+ 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/87.0.4280.66 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

Try using template literals

Or make sure that your variables inside wordBlanks are not stated as strings.

Hi @Jakind!

Welcome to the forum!

If you assign this sentence to wordBlanks - big dog ran quickly
and replace the words with the variables and keep the spaces then the test will pass.

Hope that helps!

surrounding the line with single quotes make it all a string exactly of what you wrote inside, there are no variables here

try instead of using both strings and variables and not surround everything in single quotes