I have created an array under
public class program {
public static String[] tasks = new String[5];
}
Now I want to create a two dimensional String array with that existing String array (tasks) and a new String array (date) in order to have synchronized data.
How would one go about that in Java?