I don't want to print the numbers. Let's say Var(1)="James", Var(2)="Mike", Var(3)="Bob", Var(4)="Billy", and Var(5)="Fred".<br><br>I want to print the values of Var(1) through Var(5). <br><br><%<br>For count= 1 to 5<br> Response.Write Var(count)<br>Next<br>%><br><br>This does not work because it does not return the value of count for each variable.<br> I don't think it can be done with a loop, but if it could, it would save me a lot of time and make the program much more flexible.