It seems like you just need a for loop.
for(int i = 0; i < array[0].length; i++){
//use array[0][i]
//use array[1][i]
}
The problem with this is that you have to ensure that your arrays are the same size.
I would look into using a HashMap. You can get an enumeration object from them and then use the value and key parameters to get the data that you need.