Add PHP code inside the DIV below this paragraph. The code should declare and initialize an array of strings with the following elements in it: Apples, Oranges, Bananas. Then loop through the array and echo each element.
Add PHP code inside the DIV below. The code should declare and initialize an associative array that has the following key/value pairs in it:
KEY VALUE ------------------------ firstName Bob lastName Smith age 25
Then loop through the array and echo each key and value.
In the DIV below this paragraph, echo the value of the lastName from the array that you created in the previous problem.