Could someone help me with these questions?
How do I create String array method? Is this correct?
Code :public static String [] getrandom ()
How do I pass in String array into method?
Code :public static boolean getaccess (String[]randomNo,String realNo)
How do I call that method. This is what I have done and it's giving me errors.
Code :getaccess(randomNo[],realNo);
Thanks very much.

