My issue
I cannot get the solution for the task
My code
class Codechef
{
public static void main (String[] args)
{
String[] mnts = {"Jan", "Feb", " Dec", "Apr"};
// update your code below this line
mnts[2] = "March";
System.out.println(mnts[2]);
}
}
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone