Use the correct Array method to add "Kiwi" to the fruits array.
const fruits = ["Banana", "Orange", "Apple"];
@(19);
const fruits = ["Banana", "Orange", "Apple"];
fruits.push("Kiwi");
const fruits = ["Banana", "Orange", "Apple"];
fruits.push('Kiwi');