This is a numeric array it is created in separate lines
Hello Habz You owe me £20 it is due today

This is a numeric array it is created in one line
Hello Habz You are 19 years old

This is an associative array it uses named keys instead of numbers (outputs a pre-deteremined person's age)
44

This is a multi-dimensional array
Geoff
Peter

Using a foreach loop to print an entire array to the screen (this is the associative array (all of the listed people's age are outputted))
55
44
33


Using a foreach loop to print an entire array to the screen (this is the associative array (the names are also outputted))
Mick = 55
Stuart = 44
Beth = 33


Using a for loop to print an entire array to the screen (this is the associative array)