What is the purpose of the arguments object in JavaScript functions?
arguments
It allows you to define multiple return values from a function.
It represents the arguments passed to a function.
It contains information about the function itself.
It provides access to the calling function.