Please help me to skip this

You will need to use the string concatenation operator + to build a new string, using the provided variables: myNoun , myAdjective , myVerb , and myAdverb . You will then assign the formed string to the wordBlanks variable. You should not change the words assigned to the variables.
my code
const wordBlanks = “My” +myNoun+ “which is”+myAdjective+ “,can” +myVerb+ “so ,” +myAdverb;

It’s just like making a normal sentence. Note:- before you start coding, think of what you want your result to be.
And also, try adding space to you string for readability.
Example:-
"The " + myNoun + " is " + myAdjective + “.”;

Yes, what @Ezeji says.

You can also make it clear what is happening by putting:

console.log(wordBlanks)

at the bottom of your code. That will show you in the console the string you are creating and should make it easier to see what the problem is.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.