<?php
$stack = array("orange", "banana");
$counts = array_push($stack, "apple", "pear");
print_r($stack);
echo "<br/>";
echo $counts;
?>
