The split() function with no arguments splits the default variable $_ on whitespace. Whitespace includes spaces, tabs, and newlines, and leading/trailing whitespace is ignored. The string ' a b c ' splits into three non-whitespace elements: 'a', 'b', and 'c'.