The error displayed in the following Python code is?

import itertools l1=(1, 2, 3) l2=[4, 5, 6] l=itertools.chain(l1, l2) print(next(l1)) a) ‘list’ object is not iterator b) ‘tuple’ object is not iterator c) ‘list’ object is iterator d) ‘tuple’ object is iterator