# 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. Check if it is installed in (/usr/share/dict/words or /usr/dict/words) "
    end
  end