All the posts and topics that contain only an error report will be moved here after the error is corrected. This is to ensure that when users view a question in ETS Viewer, the "Discuss" button will not indicate the presence of a discussion that adds no value to the question.
With the explanation: It is missing a comma between 4} and {5.
It should be: new int[][] { { 0, 1, 2, 4} , {5, 6}};
Even with this comma it would still have failed, since there is also a space between array and 2D. Personally I didn't even noticed the missing comma since I already noticed this space and knew it failed.