* @return The list of words from the file.
* @throws IOException If there is an error.
*/
private List<String> loadNameDictionary(String filename)
throws IOException {
DictionaryLoader loader = new DictionaryLoader();
return loader.load(getClass().getClassLoader().getResourceAsStream(filename));
}