MCQ
Which built-in method adds one or more elements to the end of an array?
JavaScript
A push()
B pop()
C shift()
D unshift()
Explanation

push() appends elements to the end of an array and returns the new length.