sequence = [4, 3, 1, 2, 2, 3] # Temporary

def draw():
    screen.fill((0, 0, 0))
    
    screen.draw.text(', '.join(map(str, sequence)), (0, 0))