My issue
can we use -indexing?
My code
class Codechef
{
public static void main (String[] args)
{
String[] week = {"Monday", "Tuesday", "Wednesday", "Thursday"};
// update your code below this line
System.out.print(week[2]+"\n"+week[3]);
}
}
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone