What is the output of the following code?
t = ['a', 'b', 'c'] t.remove('b') print(t)
A) ['a', 'c']
['a', 'c']
D) ['b', 'a']
['b', 'a']
B) ['b', 'c']
['b', 'c']
C) ['a', 'b']
['a', 'b']