Help me in solving CLB086A problem

My issue

It is saying failed test case. how can i fix it?

My code

#include <stdio.h>
#include <string.h>
int main() {
    char months[4][10] = {
        "January",
        "February",
        "March",
        "April"
    };
    printf("The third month of the year is: %s\n", months[2]);
    return 0;

}

Learning course: Data structures & Algorithms lab
Problem Link: https://www.codechef.com/learn/course/muj-aiml-dsa-c/MUJADSAC05/problems/CLB086A