Strings & Patterns Learning Mode

What will be the output of the following PHP code?

    <?php
    $text = "this is\tsome text that\nwe might like to parse.";
    print_r(split("[\n\t]",$text));
    ?>