A few things to note. [] should be after the type, not the variable name ("int[] name", not "int name[]"). "new" should be followed by the type and not the variable name ("new int[10]", not "new...