I keep getting the following error with my arraylist. Any help is appreciated
cannot find symbol - Class Arraylist
public class Bank
{
private ArrayList<Account> accounts;
/**
* A bank starts without any accounts.
*/
public Bank()
{
accounts = new Arraylist<Account>();
}