module Faker::HipsterIpsum

def word

def word
  HIPSTER_WORDS.rand
end

def words(num = 3)

def words(num = 3)
  HIPSTER_WORDS.random_pick(num)
end