module FFaker::Lorem

def sentence(word_count = 4)

def sentence(word_count = 4)
  first_word, *last_words = words(word_count + rand(1..5))
  return "#{first_word.capitalize} #{last_words.join(' ')}." if last_words
  first_word.capitalize
end