✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given the below code, what is the contents of the mystery object at the end of the following block of code:
mystery = ArraySet(10)
mystery.add(1)
mystery.add(1)
mystery.add(2)
mystery.add(3)
mystery.remove(3)
print(mystery)