Word Blanks lol everything passed above my head will u plz elaborate

Tell us what’s happening:

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "";

  // Your code above this line
  return result;
}

// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly");

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 5.0.1; GT-I9506) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks

Your return statement is an empty string, as if you look at your result variable, it is an empty string. You would need to concatenate all the arguments, myNoun, myAdjective, etc to result.

you are supposed to concatenate(to join) the arguments in the wordBlanks function to make a meaningful statement and store that statement in ‘result’. The arguments should be separated by spaces not words…

something like this…

<redacted>

which shall produce===> My big dog ran quickly

Feel free to bother me where you have not understood. I’ll help where I can.

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.

Thank you for understanding.

Oh! my bad. I did not think about that for a milli sec. Will put that in mind next time. Thanks

Thanks all for ur time n helping me :slight_smile: