module FFaker::LoremIE
def paragraph
def paragraph fetch_sample(PARAGRAPHS) end
def paragraphs(paragraph_count = 3)
def paragraphs(paragraph_count = 3) (1..paragraph_count).map { paragraph } end
def question
def question fetch_sample(QUESTIONS) end
def sentence
def sentence fetch_sample(SENTENCES) end
def sentences(sentence_count = 3)
def sentences(sentence_count = 3) (1..sentence_count).map { fetch_sample(SENTENCES) } end
def word
def word fetch_sample(WORDS) end
def words(num = 3)
def words(num = 3) fetch_sample(WORDS, count: num) end