"Now is the time"~subWords --> .array~of("Now", "is", "the", "time")
"Now is the time"~subWords(2,2) --> .array~of("is", "the")
"Now is the time"~subWords(3) --> .array~of("the", "time")
"Now is the time"~subWords(5) --> .array~new(0)
do word over source~subWords -- extract all of the words to loop over
say word
end