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.