0 / 60 seg.

Is the output of this code in descending order, shown vertically, and with spaces between numbers? And what is the output?

$numbers = array(4,6,2,22,11);
sort($numbers);
$arrlength = count($numbers);
for($x = 0; $x < $arrlength; $x++){
    echo $numbers[$x];
    echo "<br />";
    }