I don't understand the difference between
String[] arrayName = {/*some data here*/};
and
String arrayName[] = {/*some data here*/};
Is there any difference between placing square brackets after the type (String[]) and after the array name (String arrayName[])?
If so, what?