Match the pseudocode to the code

What is the code and where does it go? Write the number and letter next to each description.

Pseudocode Code Where it goes
  1. ____, ____ connect to Java code that allows responses to things that happen
  2. ____, ____ Declare a multiline object for output
  3. ____, ____ Instantiate a multiline object for output
  4. ____, ____ Change the color and style of letters that appear for output
  5. ____, ____ Allow multiple lines for output
  6. ____, ____ Display the multiline output object on the panel.
  7. ____, ____ Display output on a multiline object for output
  1.  bigbox.setText("what displays?");
  2. private JTextArea bigbox;
  3. import java.awt.event.*;
  4. bigbox = new JTextArea(" ",3,25);  
  5. bigbox.setFont(new Font("Serif", Font.PLAIN, 14));
  6. add(bigbox);
  7. bigbox.setLineWrap(true); 
  1. above the class definition
             public class PanelMadLib extends JPanel {
  2. between the class definition and the constructor
             public PanelMadLib( ){
  3. Inside the constructor
    }
  4. Inside the actionPerformed method of a listener
     private class Listener implements ActionListener  {
                public void actionPerformed(ActionEvent e)    {