Is there a way to write a user-defined Latex command that takes no arguments and returns the nth string from a repository of strings?
baseball,marble,coin,watermelon,beachball
Johnny threw a \myWord{1}, \myWord{3}, and a \myWord{4} to Joe.
My aim would be to have this return:
Johnny threw a baseball, coin, and a watermelon to Joe.
(Perhaps a random word would be thrown in for no argument, as with \myWord{}).

