public static String getAccountIndex(String accountNumber){
...
}
This method accept an account number and find that account's index in the parallel arrays (you will only need to search the array of account numbers). Since the arrays are parallel, an account will have the same index in each array. Keep in mind that the account number is NOT the account's index in the arrays!
I want to create a method that searches for a particular index in an array using an account number that the user can input. I am unsure how to approach this.

