!752 p { File zip = loadLibrary("#1002028"); // words.zip printList(listZipFile(zip)); // will print "words.txt" S wordsText = loadTextFileFromZipFile(zip, "words.txt"); L words = toLines(wordsText); wordsText = null; print(l(words) + " words loaded!"); print("Here are some random ones:"); print(); for (int i = 0; i < 10; i++) { int j = random(l(words)); print(" " + words.get(j)); } gcAndPrintMemoryInfo(); }