I am entering multiple tokens which each contain multiple values into a multi-value field.
For example
Token1 = (1,2,3,4,5)
Token2 = (A,B,C,D,E)
If I enter a single token into a multi-value field I get all the values. If I enter both into a multi-value field in the above order I get this
1
A
B
C
D
E
What happened to 2,3,4, and 5?