Ruby - Classes and Objects
Identify the error in this Ruby class definition:
class Car
def initialize(make, model)
make = make
model = model
end
end
car = Car.new("Toyota", "Corolla")
puts car.make