public class Task { public String task = ""; public String speed = "low"; Task(String task, String speed) { this.task = task; this.speed = speed; } }