Which statements about Array splice are true? Select all that apply.
It never changes its source array
It always returns the final array length
It can insert or remove elements✓Correct answer
It returns an array of removed elements✓Correct answer
Explanation
splice can insert, remove, or replace elements in the array it operates on, and its return value is an array of removed elements. Describing it as nonmutating transfers the behavior of slice to a different method.