PHP Arrays Coding Challenge

Problem 1

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.

Apples
Oranges
Bananas

Problem 2

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.

firstName: Bob
lastName: Smith
age: 25

Problem 3

In the DIV below this paragraph, echo the value of the lastName from the array that you created in the previous problem.