Arrays Learning Mode

In what order will the following script output the contents of the $array array?

    $array = array ('a1', 'a3', 'a5', 'a10', 'a20');
    natsort ($array);
    var_dump ($array);