Do you understand about arguments to methods and constructors?
The args used when calling a method or a constructor must match those used in that method or constructor's definition. Look at the definition for the class's constructor(s) and make sure when you call it, you use what has been defined as valid args.
required: no arguments; found: int[];
The error message says the constructor has no args
and the call to the constructor tried to use an int array.
Note: The default constructor has no args.
A option might be to add a constructor with the args you want to use.