module FFaker::LoremPL

def end_of_sentence

def end_of_sentence
  case rand(10)
  when 0..7 then '.'
  when 8 then '?'
  when 9 then '!'
  end
end