I am trying to add integers into an int array, but Eclipse says:
cannot invoke add(int) on the array type int[]
Which is completely
you have an array of int which is a primitive type, primitive type doesn't have the method add. You should look for Collections.
int
Collections