Whаt will be the оutput оf the fоllowing progrаm? clаss Counter { int count = 0; public synchronized void increment() { count++; } } public class Test { public static void main(String[] args) throws InterruptedException { Counter c = new Counter(); Thread t1 = new Thread(() -> { for (int i = 0; i < 1000; i++) c.increment(); }); Thread t2 = new Thread(() -> { for (int i = 0; i < 1000; i++) c.increment(); }); t1.start(); t2.start(); t1.join(); t2.join(); System.out.println("Count: " + c.count); } }