Get Mystery Box with random crypto!

Code snippet: public class BirdSeed { private int numberBags; | Top Java Quiz Questions ☕️

Code snippet:
public class BirdSeed {
private int numberBags;
boolean call;
public BirdSeed() {
// LINE 1
call = false;
// LINE 2
}
public BirdSeed(int numberBags) {
this.numberBags = numberBags;
}
public static void main(String[] args) {
BirdSeed seed = new BirdSeed();
System.out.println(seed.numberBags);
} }