when we use the length method for strings we use parenthesis, like:
String message = "Hello World";
System.out.println(message.length());
but when we use the same method with Arrays we don't use parenthesis
int [] numbers = {1,2,3,4,5};
System.out.println(numbers.length);
We use parenthesis with all other methods but not this one, why is that?