module FFaker::CheesyLingo

def paragraph(number_of_phrases = 10)

def paragraph(number_of_phrases = 10)
  p = fetch_sample(CHEESY_PHRASES).capitalize.to_s
  (number_of_phrases - 1).times do |s|
    s = " #{fetch_sample(CHEESY_PHRASES)}"
    p << s
  end
  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