This code causes an error for me:
i = 0
Set colors = CreateObject("Scripting.Dictionary")
Do While i < 7
If True Then
Dim a(1)
a(0) = "go"
a(1) = "tRY"
colors.Add "space", a
End If
i = i + 2
Loop
I'm not too sure why. I need to do something similar, where I initialize a dictionary with one array for each key, but the while loop seems to be messing it up. Any suggestions? Thanks!