Whаt is the оutput оf this cоde?public clаss Counter { int count; public Counter() { count = 0; } public void increment() { count++; } public int getCount() { return count; } } // In mаin: Counter c = new Counter(); c.increment(); c.increment(); c.increment(); System.out.println(c.getCount());