token != seperator
The tokens are the actual pieces of strings, seperated by an ascii character 0-255, called the delimiter or seperator.
//tokenize 32 one two three | echo -a token1: $1 * token2: $2 * token3: $3 ** seperator: $($chr(32),0) (a space)
Perhaps you'll find this
mini tutorial interesting.
Greets