<?php

$resultado = array();
for ($i = 0; $i <= 5; $i++){
    array_push($resultado, rand(1,60));
}

sort($resultado);
print_r($resultado);