What is the output of the following code?
t = ['a', 'b', 'c', 'd', 'e', 'f'] print(t[1:3])
C) ['b', 'c', 'd']
['b', 'c', 'd']
A) ['a', 'b', 'c']
['a', 'b', 'c']
D) ['b', 'c']
['b', 'c']
B) ['c', 'd']
['c', 'd']