Word Blanks building mad lib

Tell us what’s happening:

Your code so far

var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";
a="dog";
b="big";
c="ran";
d="quickly";

// Only change code below this line
var wordBlanks = ""; // Change this line
// Only change code above this line

var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";
a="dog";
b="big";
c="ran";
d="quickly";

// Only change code below this line
var 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/83.0.4103.97 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

@JoelTal, consider this code to understand;

var firstPart= "My name";
var nextPart = "is";
var last part ="JoelTal"

Now if you want to make a sentence with your code, you can use it as

var output = firstPart+nextPart+lastPart
// you will get like - My nameisJoelTal
// well, you must not expect the out like that
// so, you want a space between each word, right?

So now it’s clear that you also need to add space, how to do that? see this

var output = firstPart+" "+nextPart+" "+lastPart
// you will get now, My name is JoelTal
// I just added " " space with a + sign where necessary
// that's all

Hope this will help you to understand the code.

Thank you.