What is the output of the following Python code snippet?```pythonfor i in range(5): if i == 3: continue print(i, end=' ')else: print('Loop finished', end='')```