What will be the output of this program if lucky_number = 94?
if lucky_number > 138:
print("You get a corgi!")
elif lucky_number > 94:
print("You get a labrador!")
elif lucky_number > 59:
print("You get a golden retriever!")
else:
print("You get nothing.")