What is the output? myList = [25, 16, 62, 50, 28, 90] target = 50 position = 0 found = False for item in myList: if item == target: found = True break else: position = position + 1 if found: print("The target was found at index " + str(position) + ".") else: print("The target was not found.") Responses The target was not found. The target was not found. The target was found at index 6. The target was found at index 6. The target was found at index 3. The target was found at index 3. The target was found at index 5.