Strings & Patterns Learning Mode

You run the following PHP script:

<?php
if ( preg_match("/[^a-z589]+/", "AB asdfg589nmGH", $array) ) {
print "<pre>\n";
print_r( $array );
print "</pre>\n";
}
?>

What will be the output?