Question:Which of the following is not a correct way of adding an item to an Array myArr?
A myArr.push(item); B myArr.addItem(item); C myArr[0] = item; D All of these
+ AnswerB
+ Report