_____ type of array allows us to stores data as key and value. * 1 point Numeric Array Array Associate Array Multidimensional Array code example
Example: array in php
<?php
$cars = array("Maserati", "Porsche", "BMW");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>