I have the following code:
public static void main(String[] args) { Player players[] = new Player[2]; Scanner kb = new Scanner(System.in); System.out.p
Name field should not be static. Static means that the variable is actually global and shared across all class instances.