class Cart attr_reader :products # attr_reader def initialize @products = [] end def add_product(product) @products << product end end