playersList.get(0)
Java has limited operator polymorphism. So you use the get() method on List objects, not the array index operator ([])
playersList.get(0)
Java has limited operator polymorphism. So you use the get() method on List objects, not the array index operator ([])