Multiple choice technology programming languages splice(@array,-1) Equal to Pop Equal to Push Equal to Shift Equal to Unshift Does nothing Reveal answer Fill a bubble to check yourself A Correct answer Explanation splice(@array, -1) removes and returns the last element of @array, which is exactly what the pop function does. Negative indices count from the end.