Excellent.
Okay, Line 120.
"number1" is a long, so it is not an object and therefore has no methods. You need to use "==".
java
if (name1.equals(name2) && number1 != number2)
Line 122
You are using balance, name, and acctNum from global variables. That doesn't make sense because you should be combining values from acct1 and acct2.
Line 123, 124
setting acct1 and acct2 to CLOSED doesn't actually mean anything. I imagine you should be doing
java
acct1.close();
acct2.close();
You seem to have these objects confused a bit. With part of your code seems to assume that each "Accounts" object will have several accounts, but part of it does not. It seems to me like this class should only contain data for one account, and then you should have several "Account" objects created.
So, you should probably remove the "newAccount" and "numAccounts" globals, along with methods to access them.
Good luck!
Per