An array is a data structure that stores an arbitrary number of values in a single value. An array in PHP is actually an ordered map, where map is a type that associates values to keys.
$array = array('Value1', 'Value2', 'Value3'); // Keys default to 0, 1, 2, ...,
$array = array('Value1', 'Va...