private byte[] ser() throws IOException {
student2 = new Student("Chris2", "Giroir2", "elkfjwe", "111111");
student3 = new Student("dsfsfsd", "sasa", "DSsd", "sds");
FastByteArrayOutputStream out2 = new FastByteArrayOutputStream();
ObjectOutputStream oos2 = new ObjectOutputStream(out2);
oos2.writeObject(student2);
oos2.writeObject(student3);
return out2.toByteArray();
}