14.
Which array method is used to add elements to the end of an array?
push()
splice()
pop()
shift()
Correct: A
The push() method adds one or more elements to the end of an array and returns the new length of the array. This method is helpful when you need to append elements to an array dynamically.