Strings & Patterns Learning Mode

Consider the following script. What line of code should be inserted in the marked location in order to display the string php when this script is executed?

<?php
 $alpha = 'abcdefghijklmnopqrstuvwxyz';
$letters = array(15, 7, 15);
foreach($letters as $val) {
/* What should be here */
 }

?>