Very new to Java and programming in general. trying to figure out how to print the contents of my array
public class GameClass {
    public static void main(String args[]) {
        String [] gameList = new String [] {"Call of Duty", "Skyrim", "Overwatch", "GTA", "Castlevania", "Resident Evil", "HALO", "Battlefield", "Gears of War", "Fallout"};
        System.out.println(gameList[]);
    }
}
 
     
     
     
     
    