The second line: [Ljava.lang.Object;@197a37c looks like what would print for an array of Object:
Object[] objArray ...
What did you try to print? If you want to see the contents of an array, use the Arrays class's toString() method: S.o.p("theArray=" + Arrays.toString(theArray));
Include an id string to describe what is being printed.