Two variables `a` and `b` both point to the same class instance. After `b.score = 10`, what is `a.score`?class Player { var score = 0 } let a = Player() let b = a b.score = 10