What's wrong with this code that uses a function to draw a stick figure?
Assume the colors are already defined and the rest of the program is ok.
What is wrong with the code in the function?
def draw_stick_figure(screen, x, y):
    # Head
    pygame.draw.ellipse(screen, BLACK, [96,83,10,10], 0)
    # Legs
    pygame.draw.line(screen, BLACK, [100,100], [105,110], 2)
    pygame.draw.line(screen, BLACK, [100,100], [95,110], 2)
    # Body
    pygame.draw.line(screen, RED, [100,100], [100,90], 2)
    # Arms
    pygame.draw.line(screen, RED, [100,90], [104,100], 2)
    pygame.draw.line(screen, RED, [100,90], [96,100], 2)