Arrays Learning Mode

What will the following script output?

<?php
$array = array (0.1 => 'a', 0.2 => 'b');
echo count ($array);
?>