Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Java has two categories of types: primitives and references. An array is a reference type. When you print the array, what you are seeing is a reference which the JVM uses to locate the object in memory. It has nothing to do with the contents of the array.
To see the contents of the array, you can loop through and print the values. They will show up in the test log.
You can't print an array in Java like that, that's why you see that.