I want to create some kind of ordered list that i can call with the name and a number:

So if i had

listnumbers = int1 As Integer, int2 As Integer, int3 As Integer

If i wanted to call int1 i could just write

listnumbers(0)

or something like that. i know how to do this in other languages, but i have no idea what it's called in VBA.

Any help?