Last example re Arrays is wrong

Posted by Anonymous February 16, 2010 - 9:26pm

http://www.edumax.com/java-basics-basic-java-objects-arrays.html

int[][] twoDimArray;
twoDimArray = {{1,2,3},{1,2,3,4,5},{1,2,3,4},{1},{1,2});

Last closing character is a parenthesis. It ought to be a curly brace.

So there. :)