Variable name in for loop?

I want to create several variables (actually tween objects) in a for loop. I want the variables to get names like “variable1” when i =1, “variable2” when i = 2 etc.

for(i=0; i<10; i++) {

}

How do i do this?