Functions Php

Get an array of the sequential numbers between 1 and 40 (inclusive)
    $numbers = range(1,40);
    print_r($numbers);
?>