What will be the output of the following program?
import java.io.*;
public class ExampleRandomAccessfile {
public static void main(String[] args) throws IOException {
File file = File.createTempFile("Alphabets", "txt");
RandomAccessFile raf = new RandomAccessFile(file, "rw");
raf.write("ABCDE\nFGHIJK".getBytes());
System.out.print(raf.readLine() + "~");
raf.seek(1);
System.out.print(raf.readLine() + "~");
raf.write("12345\n6789".getBytes());
raf.seek(3);
System.out.print(raf.readLine());
raf.close();
}
}