<?php $numbers = array(4,6,2,22,11); sort($numbers); function printArray($nums) { foreach($nums as $num) { echo $num; echo "<br>"; } } printArray($numbers);
You have javascript disabled. You will not be able to edit any code.