Arrow Functions

What is the output of this code that accesses 'arguments' in an arrow function?
const fn = () => arguments;
console.log(fn(1, 2, 3));
Next Question (17/20)