Help me in solving CLB086A problem

My issue

Failed on a hidden test case

My code

#include <stdio.h>

int main() {
    // Declare an array of strings to store the first 4 months, ensuring sufficient space for each month name
    char months[4][10] = {"January", "February", "March", "April"};

    // Access and print the 3rd month (index 2)
    printf("The 3rd month 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