package chapter10;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Customer {
    private String name;
    private  String streetAddress;   
    private  String phoneNumber;
    private  int total;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }      
    public  String getStreetAddress(){
        return streetAddress;
    }
    public void setStreetAddress(String streetAddress) {
        this.streetAddress = streetAddress;
    }
    public String getPhoneNumber() {
        return phoneNumber;
    }
    public void setPhoneNumber(String phoneNumber) {
        this.phoneNumber = phoneNumber;
    }
    public int getTotal(){  
        return total;       
    }
    public void setTotal(int total){
        this.total = total; 
    }
    public static void assign(){
        int a = (int) (Math.random() + 10); 
        int r = (int) (Math.random() + 10); 
        int f = (int) (Math.random() + 10); 
        System.out.println(a + r + f + "x" + "x" + "x");
    }
    public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        ArrayList <Customer > customerList = new ArrayList <Customer>();
        char ans;
        do
        {
            Customer customer = new Customer(); 
            System.out.print("Customer name ");
            customer.setName(in.next());
int i = 0;
++i;
            System.out.print("Street Address ");
            customer.setStreetAddress(in.next());
            System.out.print("Phone Number ");
            customer.setPhoneNumber(in.next());
            customerList.add(customer);
            System.out.println("Enter total sales ");
            customer.setTotal(in.nextInt());
            System.out.println("Would you like to enter in a new customer       (    y/n)? ");
            String answer = in.next();
            ans = answer.charAt(0);
           ((String) customerList).concat("")
        } while(ans == 'y');
        for(Customer c: customerList){
            System.out.print(c.getName() + "\n" + "Phone number is         "            +c    .getPhoneNumber() +"\n" + "Total sales is "+ c.getTotal() + "\n" + "Address       is"+ c.getStreetAddress());
        }
        for(int i=0; i<customerList.size(); i++){
            //System.out.print(customerList.get(i).getName());
        }
    }
}
I need to assign a number to each value in the arraylist but i am getting an error that says that I have to convert to string (arraylist). How do I add it?
 
     
     
     
     
     
    