print [ split(/:/,) ]->[3] #### # this works: print ((split /:/, )[3]); # doesn't work (note the missing outer parenthesis): print (split /:/, )[3];