Word Blanks - problem in displaying result

Tell us what’s happening:
I don’t know how to test the function and see what is happening if i change the words becouse it’s not printing the result anywhere, I couldn’t finde out how to properly finish this test I just copy paste the text from the hint whatever i’m typing it doesn’t show the result of it.
How can I see the result of this function ?

Your code so far


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 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

Link to the challenge:
can’t upload links yet

You can use your browser’s console (F12 in Chrome) or you can use a tool like repl.it.

Thanks I tyied using console in chrome but I could’nt find the rsult anywhere ther but this tool you gave it’s briliant
cheers mate!!!