Well, you have written employee.length() which is wrong here, instead use employee.length.
When it's about the array, length is a final variable not a method.
And also use Arrays.toString(employee) to properly print employees.
System.out.println(employee) will only print reference addresses
If you want to become Java expert, you can check out the tutorials from Intellipaat from here.