I have a text file:
A
B
C
D
E
F
G
H
...
And I want to iterate through this text files lines and asign the values to different arrays:
Array1 = [A,E...]
Array2 = [B,F...]
Array3 = [C,G...]
Array4 = [D,H...]
The first line always corresponds to the first array, second line to second array, until it reaches the 5th line which is added to the first array again and so on.