Menu
×
×
Correct!
Exercise:Use the correct Array method to add "Kiwi" to the
const fruits = ["Banana", "Orange", "Apple"];
fruits.push("Kiwi");
const fruits = ["Banana", "Orange", "Apple"];
fruits.push('Kiwi');
Not CorrectClick here to try again. Correct!Next ❯const fruits = ["Banana", "Orange", "Apple"];; |