Split string into an array on spaces

$string = "The quick brown fox jumps over the lazy dog."
$string.split()
Details
Uses a split to break apart the string

Example
PS C:\> $string = "The quick brown fox jumps over the lazy dog."
>> $string.split()

The
quick
brown
fox
jumps
over
the
lazy
dog.