I have a file which has following variables.
Dim apple(10)
apple(0)= "banana"
apple(1)= "2 banana"
apple(2)= "3 banana"
and these variables are in script/test/test.vbs
Now i have another file which has following
MSGBOX apple(0)
MSGBOX apple(1)
which is in script/main.vbs
how to make these possible?