LLD - Design — Tic-Tac-Toe Game
Identify the bug in the following player turn management code snippet:
players = ['Anna', 'Ben', 'Cara']
current_index = 0
while True:
print(players[current_index])
current_index += 1