Add code to stop execution of the TimerTask named task:
public class Main {
public static void main(String[] args) {
Timer timer = new Timer();
TimerTask task = new TimerCode();
timer.schedule(task, 2000, 3000);
_______________
}
}