# File lib/randexp/dictionary.rb, line 2
  def self.load_dictionary
    if File.exists?("/usr/share/dict/words")
      File.read("/usr/share/dict/words").split
    elsif File.exists?("/usr/dict/words")
      File.read("/usr/dict/words").split
    else
      raise "words file not found"
    end
  end