I think there is one error on the challenge seek and destroy

this is the Challenge:
You will be provided with an initial array (the first argument in the destroyer function), followed by one or more arguments. Remove all elements from the initial array that are of the same value as these arguments.

and this is the code you gave

my question is : is it an error? because in the function,they didn’t give a name for arguments(excuse me i’ts not easy to say what I think because my english is not rich). They just give function destroyer(arr) and nothing else,but after they put destroyer([arr], and something else).Do you undestand me?

It’s not a mistake. The challenge description suggests researching the Arguments object. I recommend doing that

ok,I understand now.