What kind of variable is label?

public class Labeller extends JFrame {
      public Labeller () {
                JLabel label = new JLabel("Field or Variable");
      }

      public static void main (String[] args) {
               new Labeller();
      }
}
local variable, Object Reference
  • local variable, primitive
  • Instance variable, primitive
  • Instance variable, Object Reference

There are no hints for this question