Without running it, what does this do?
function hmmm(){ $i = 'a'; $array = array(); while($i != 'z'){ $array[$i] = $i; $i++; } return $array; }