module Faker::HTMLIpsum

def ol_short(items = 3)

def ol_short(items = 3)
  s = "<ol>"
  items.times do
    s << "<li>#{sentence 2}</li>"
  end
  s << "</ol>"
end