What happens when you try to use the arguments object within an arrow function?
arguments
The arguments object always returns an empty object.
The arguments object is not available in arrow functions.
The arguments object refers to the arguments of the surrounding scope.
The arguments object refers to the arguments of the arrow function.