module FFaker::CheesyLingo

def paragraph(number_of_phrases = 10)

def paragraph(number_of_phrases = 10)
  p = +fetch_sample(CHEESY_PHRASES).capitalize
  (number_of_phrases - 1).times { p << " #{fetch_sample(CHEESY_PHRASES)}" }
  p << '.'
end

def sentence

def sentence
  [
    fetch_sample(CHEESY_PHRASES).capitalize,
    fetch_sample(CHEESY_PHRASES),
    fetch_sample(CHEESY_PHRASES)
  ].join + '.'
end

def title

def title
  "#{fetch_sample(TITLE_1)} #{fetch_sample(TITLE_2)}"
end

def word

def word
  fetch_sample(CHEESY_WORDS)
end

def words(count = 5)

def words(count = 5)
  fetch_sample(CHEESY_WORDS, count: count)
end