An array holds multiple values within a single variable.
In the following example, $cars is an array. The PHP var_dump() function will return its data type and value
$cars = array("Volvo","BMW","Toyota");var_dump($cars);