Another way would be.
myArray = array("v", "a", "i")
or Create a long string via a loop (this avoids redim etc)
myString = "s, p, l, i, t, m, e"
myArray = split(myString, ",")
myArray will now have 7 elements.
Hope that helps.
Chuckster1