A function signature ends with ...rest. Which statement about rest is accurate?
It may be followed by any number of ordinary parameters
It stores only the count of remaining arguments
It always creates an Array containing one nested Array
It gathers remaining argument values into an Array and must be final✓Correct answer
Explanation
A rest parameter must be the final parameter and gathers the remaining argument values into an Array. It does not wrap all remaining values into an extra nested array unless one of those values was itself an array argument.