Arrays Learning Mode

What will the following script output?

<?php
    $a = array ('a' => 20, 1 => 36, 40);
    array_rand ($a);
    echo $a[0];
?>