Q20: paintComponent

Take out a piece of paper and put your name on the upper right corner.

Draw the picture that will be produced by the following paintComponent() method:

public static void paintComponent(Graphics g) {
    super.paintComponent(g);
    g.drawLine(64, 10, 94, 32);
    g.drawLine(94, 32, 82, 67);
    g.drawLine(82, 67, 45, 67);
    g.drawLine(45, 67, 64, 10);
}

Finish your answers before the timer runs out.