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