How do you access the individual elements of the rest parameter in JavaScript?
By using array destructuring syntax.
By using the arguments object.
arguments
By accessing the rest property of the function.
rest
By using the rest keyword before the parameter name.