And i have no idea why!
I bascially have a STRING (yes, not an array), that has the following contents:
[something, something else, somoething, trall
The output
[Ljava.lang.String;@186d4c1
is the way java prints a string array (or any array) by default (when converted to a string). You may use
Arrays.toString(urlArr)
to get a more readable version.