PHP Basics Learning Mode

What will the following script output?

$array = '0123456789ABCDEFG';
$s = '';
for ($i = 1; $i < 50; $i++) {
    $s .= $array[rand(0,strlen ($array) - 1)];
}
echo $s;