Fix all 'Implicit call to array '.toString() problems
import java.util.Arrays;
public class Test {
public static void main(String[] args) {
String[] words = new String[0];
String[] types = new String[0];
System.out.println("words = " + words);
System.out.println("types = " + Arrays.toString(types));
}}