For some reason, I am getting this error and I am very confused at this point. How can I correct this problem?
public static void main(String[] args) throws FileNotFoundException {
    Memory myMemory = new Memory();
    File file = new File(args[0]);
    myMemory.fileParser(file);
}
This is my error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
        at Memory.main(Memory.java:262)
 
     
     
    