array.length()
what's the problem with the .length method here?
String date = new String[5];
date[0] = "Hello1";
date[1] = "Hello2";
date[2] = "Hello3";
date[3] = "Hello4";
date[4] = "Hello5";
System.out.println(date.length());
The system says that it can't find length method.
Thanks

