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