Read the code carefully
# A tiny mock of what client.messages.stream gives you.
def text_stream():
for chunk in ["Hi ", "Claude ", "here. "]:
yield chunk
for text in text_stream():
print(text, end="")
print() # final newlineWhat will the program print? Write here: