Knowing that `+=` on a list mutates it in place, what does this print?a = [1, 2] b = a a += [3] print(b)