class RandomWords::Generator

def random_number_with_plural

Returns:
  • (String) - A string containing a number and a plural noun
def random_number_with_plural
  number = numbers.sample
  "#{number} #{random_plural_noun}"
end