wordBlank is giving me a tough time

Tell us what’s happening:

i seem not to get this right, can someone help?

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 " + "myAdejective " + "myNoun " + "myVerb " + "back " + "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; rv:43.0) Gecko/20100101 Firefox/43.0.

Challenge: Word Blanks

Link to the challenge:

you need to use variables, not strings (a variable does not have quotes around), for the four words above

The declared variable shouldn’t be quoted.
It should look like this:
var day = "The "+ variable + variable + variable + " back " + variable + ". ";

1 Like

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.

2 Likes

Check your spelling for wordblanks. If the original poster does end up copying your entire solution exactly then it will still be wrong because of the typo.

My apologies , that was totally not intended. Corrections has been made to the post.