I'm getting an error on line 51 and don't know what it means can someone help me fix this error ?
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package million; import java.util.Scanner; import java.util.ArrayList; /** * * @author Ernie */ public class Million { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here int NoCus = 0; getCustomers(NoCus); } public static void getCustomers(int NoCus){ Scanner sc = new Scanner(System.in); System.out.println("Enter the number of customers"); NoCus = sc.nextInt(); System.out.println("Number of customers entered = "+NoCus); getDetails(NoCus); }//end GetCustomers public static class Customer { String title; int accNo; int price; int sBal; // Add constructor, get, set, as needed. } public static void getDetails(int NoCus){ ArrayList details = new ArrayList(); for (int proCus =0; proCus != NoCus; proCus++){ System.out.println("Enter customer details"); Scanner sc = new Scanner(System.in); details.add(new Customer("Ernie", 454321, 78, 4999)); //details.add(sc.next()); System.out.println("You have entered"+details); } }//end getDetails }//end main