class Faker::Company

def logo

Get a random company logo url in PNG format.
def logo
  rand_num = rand(1..13)
  "https://pigment.github.io/fake-logos/logos/medium/color/#{rand_num}.png"
end