Sorry i modified the the method but din't do it to the main
Code:
public static Object[] wharever() { Object object[] = new Object[3]; int x = 0; String y = "1"; Boolean z=true; object[0] = x; object[1] = y; object[2]=z; return object; } public static void main(String... args) { Object object[] = wharever();
Leave a comment: