- Indexed Arrays 5:13
- Adding Array Elements 5:08
- List Quiz 5 questions
- Removing Array Elements 4:50
- Editing Array Elements 1:36
- Modifying Arrays 3 objectives
- Associative Arrays 3:48
- Associative Quiz 5 questions
- Mixing Data Types in Arrays 6:07
- Multidimensional Arrays 6:14
- Multidimensional Arrays 3 objectives
- Sorting Arrays 6:16
- Mixing and Sorting 5 questions
Quiz Question 1 of 5
$winter = array("December", "January", "February");
$spring = array("March", "April", "May");
$summer = array("June", "July", "August");
$fall = array("September", "October", "November");
$seasons = array("Winter" => $winter, "Spring" => $spring, "Summer" => $summer, "Fall" => $fall);
What is the KEY of the third element of $seasons?
Choose the correct answer below: