Hey, Guys, I tried many times to solve it different, but none of it work out. Please help with any idea to this issue. thanks!

Tell us what’s happening:

Your code so far

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb,myNum1,myNum2,myNum3,myNum4) {
  var result = "";
  // Your code below this line
  
result="James'"+ myAdjective + "funny" + myNoun + myVerb + myAdverb + "to the garden" + "saw a" + myNum2 + "cuty"+ myNum1 + myNum3 + "the flowers" + myNum4 +".";
  // Your code above this line
  return result;
}

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

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/word-blanks

First of all you are adding new arguments to the function which you shouldn’t. Work with the ones provided to you. Also, the challenge states that you should use non-word characters.