You have previously done coding challenges to loop through the key/value pairs of an associative array in PHP. You've also looped through the properties of an object in JavaScript. Now you will be asked to loop through an array of associative arrays in PHP, and to loop through an array of objects in JavaScript!
In the PHP code for this page you'll find an array of associative arrays. Loop through the $dogs array and echo out the name of each dog.
In the SCRIPT element below this paragraph you'll find an array of 'dog' objects. Loop through the objects in array. Inside the loop, create an LI element that displays the current dog's name, then append the LI element to the OL element below.