This question already has an answer here:
Sorry if this is already been answered but searching with [] doesn't help you a lot.
While writing in Java I started wondering whether there's any semantic difference between these declarations:
String[] strings
and
String string[]
Or it is different syntax for the same type.