I want to ask what is the proper way to define an array as argument in class constructor ?
for example
public class example {
int x;
int y;
String [] x = new Array [5];
public example(int x, int y, String [] x){
etc etc etc.
Is String [] x is written right ? because netbeans is giving an error however i change it.