Word Blanks in javaSc

Describe your issue in detail here.
whats wrong with these code
// Here is the code
const wordBlanks = “my” + myAdjective + " " + myNoun + " can "+ myVerb + " " + myAdverb + “.”;

Your code so far


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

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

You don’t have any code here. That can’t help matters.

Your picture is hard to read and impossible for me to run, but I it looks like you don’t have any spaces between your words.

1 Like
// Here is the code 
const wordBlanks = "my" + myAdjective + " " + myNoun + " can "+ myVerb + " " + myAdverb + ".";

You are really close. What will happen between these two words?

1 Like

Tell us what’s happening:
Describe your issue in detail here.
good morning guys im get stucked with that code lesson can any one tell me the right cod

Your code so far


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

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

const wordBlanks = "my" + " " + myAdjective + " " + myNoun + " can "+ myVerb + " " + myAdverb + ".";

oh the space , thanx Jeremy

1 Like

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