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