Explain how this code works and what is will return when ran.
def Dream_car() :
print("Think of your dream car...")
Make = input("What is the Make of it?")
Model = input ("What is the Model?")
Year = input("What is the year of production")
print("The", Year, Make, Model, "is a really nice car." )
print("But I think the Tesla Cyber Truck is a whole lot better.")
Dream_car()