The code for the add method for the ArrayBag class is shown below. What is the missing code?
def add(self, item):
self.items[len(self)] = item

0.37 Points
self.items +=1
self.len = self.items
self = self + 1
self.size += 1