simple meaning of php array

Simple Meaning of array
Main feauture of array which can store multile value and variable.
Example of Simple Array
<?php
$cars=array("Saab","Volvo","BMW","Toyota");
print_r($cars);


?>