You have already completed these exercises!
Do you want to take them again?
You completed the PHP Update Arrays Exercises from W3Schools.com
Share on:
What will the following array look like after the update:$fruits = array('Apple', 'Banana', 'Orange');$fruits[1] = 'Kiwi';
$fruits = array('Apple', 'Banana', 'Orange');$fruits[1] = 'Kiwi';
('Kiwi', 'Banana', 'Orange');
('Apple', 'Kiwi', 'Orange');
('Kiwi', 'Apple', 'Banana', 'Orange');
('Apple', 'Kiwi', 'Banana', 'Orange');