Given this snippet, what is the most accurate statement about buffer sharing and CoW?var a = [1, 2, 3] let b = a // shares buffer, refcount 2 a[0] = 9 // mutating subscript print(b[0]) // ?