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.
This comment is hidden because it contains spoiler information about the solution
You are in the method, the variables are not global.
You take the first value of the array "numbers". But this is only possible, when the array is not null and have values (length > 0). Otherwise the access to the array will force an exception.
So you have to check for null and for a length > 0 before! ;-)
You should take the first two lines (int max =..., int min = ...) with access to numbers after the check for null and length.
And just a hint but no error: Why you go twice through the numbers? You could add the actual number to "sum" in the first for. ;-)