I used this in Excel and it works fine.
dim varScreen (0 to 2) as string varScreen(0) = \"sample 1\" varScreen(1) = \"sample 2\" varScreen(2) = \"sample 3\"
You can also create arrays dynamically using the Array function. Sometimes this is more convenient than assigning array elements separately.
Dim arr arr = Array("sample 1", "sample2", "sample 3")