I have this:

VB Code:
  1. Print #1, lblName(i).Caption; ","; score(i).Caption; ","; kills(i).Caption; ","; death(i).Caption

I need i to any number from 0-15 so instead of me doing

Print #1, lblName(0).Caption; ","; score(0).Caption; ","; kills(0).Caption; ","; death(0).Caption
Print #1, lblName(1).Caption; ","; score(1).Caption; ","; kills(1).Caption; ","; death(1).Caption

and so on i can just use 1 line.