Revised RandomIOApp.java Program 1. Revised logic in the following lines of codes file.writeBoolean(true); file.writeInt(123456); file.writeDouble(1234.56); 1.1 this module should now iterate 10 times to the above lines codes 1.2 Comment out he above lines of codes and apply necessary changes as reflected below. Create necessary variables to accomplish the task. //file.writerBoolean(bolArray[true]) file.writerBoolean(true) //file.writerInt(123456) file.writerInt(123456*i) //file.writerDouble(1234.56) file.writerDouble(1234.56*i) 1.4 this module should now itereate 10 times at lines codes written below file.seek(0); -> change to file.seek(i2); System.out.println(file.readBoolean()); System.out.println(file.readInt()); System.out.println(file.readChar()); System.out.println(file.readDouble());