Multiple choice technology programming languages shift (@array); splice (@array, 0, 1); splice (@array, @array-1, 1); splice (@array, scalar(@array), 0, @sublist); splice (@array, 0, 0, @sublist); Reveal answer Fill a bubble to check yourself A Correct answer Explanation The shift function removes and returns the first element of an array. This is functionally equivalent to splice(@array, 0, 1), which removes one element starting at index 0. Distractors represent splicing from the end or inserting sublists.