Thanks in advance!
Okay, so I have an array:
dim myArray(2)
myArray(0) = "hello"
myArray(1) = "goodbye"
then I need to make a variable by taking the string value of one of my array elements, adding it to another string, and setting it to a value.
So, what I tried to to was:
myArray(0) & "John" = "string"
...but that doesn't work
Any ideas of the syntax to create a new variable this way?
THANK YOU!!!
-Mac
Okay, so I have an array:
dim myArray(2)
myArray(0) = "hello"
myArray(1) = "goodbye"
then I need to make a variable by taking the string value of one of my array elements, adding it to another string, and setting it to a value.
So, what I tried to to was:
myArray(0) & "John" = "string"
...but that doesn't work
Any ideas of the syntax to create a new variable this way?
THANK YOU!!!
-Mac