Two final arrays have to be written to a .txt file, so that you get the first object in one array and the first object in the second array written one after another. Trying to write to text files confuses me enough as it is, but having to write two arrays one after another...
So if array 1 had "A, B, C" and the second had "1, 2, 3", the final output would be
- A 1
- B 2
- C 3
I feel like it would have something to do with making a File and the System.out command, but I'm not sure how to do it...