x
 
<!DOCTYPE html>
<html>
<body>
<pre>
<?php  
$fruits = array("Apple", "Banana", "Cherry");
array_push($fruits, "Orange", "Kiwi", "Lemon");
//Output the array:
var_dump($fruits);
?>
</pre>
</body>
</html>