Can i ask whats the meaning of the input "52" on [], because if i delete the 52 the program wont run.
ArrayList<String> playerCard[]= new ArrayList[52];
Can i ask whats the meaning of the input "52" on [], because if i delete the 52 the program wont run.
ArrayList<String> playerCard[]= new ArrayList[52];
 
    
     
    
    The 52 tells the compiler how large the array is.
