Help me, how to see output here?

how can i see the output??



function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "";
    result+= "My "+myAdjective+" "+myNoun+" "+myVerb+" very "+myAdverb+".";
  // 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

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

If you want to actually see the result of your code, you’ll need to specifically output it somewhere. Most common is the console, though you do have the option of (shudder!) alerts.

To do the console route, you’d want to open the developer tools in your browser. For Chrome, that’s done by pressing ctrl-shift-j, other browsers may vary. Then, in your code, just before the return statement, show something in that console:

console.log(result);

To do the same thing with an alert (in case your browser hasn’t got dev tools, like Amazon’s Silk), you can. Instead of the console.log, add this line:

alert(result);