Please help me for this example

Tell us what’s happening:

Your code so far


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

  // Your code above this line
  return result;
}

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36.

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

A variable inside of “” is no longer a variable.

let name = "Bob";

console.log("name"); // logs name to console
console.log(name); // Logs Bob to the console

Your result variable is returning strings.
You want there to reference the parameters from the function .

In your case “myAdjective” (this is a string) you want it just as

myAdjective

just a reference and not a string literal.
I am suggesting you to learn javascript types first.