Ive got an array of numbers, and I need to go through it, and grab information from lines of a text file, that correspond to the numbers in this array...

EG:

Array(1,5,10,12)

I want to read in order:

Line 1
Line 5
Line 10
Line 12

Now I can do the loop bit, but I am unsure on how to go to Line X and read all the information from that line. Anyone able to help me out?

Cheers