Strings & Patterns Learning Mode

What will be the output of the following PHP code?

<?php
    $line = "You like dogs. I hate dogs. We should marry.";
    $split = preg_split('/\./', $line);
    print_r($split);