A class has both of the following methods. What happens when you run the class?public static void main(String[] args) { System.out.println("array version"); } public static void main(String args) { System.out.println("single version"); }