All you know that arguments is a special object that holds all the arguments passed to the function.
arguments
And as long as it is not an array - you cannot use
You can use the method [].slice.call(arguments, 1)
[].slice.call(arguments, 1)
[].slice will return you the slice function object and you can call it as the arguments and 1 are the parameters
1