Help me in solving CLB086A problem

My issue

i got the right output still it is saying wrong answer

My code

#include <stdio.h>
#include <string.h>

int main() {
    // declare the array and print 3rd month
    char arr[4][10] = {"January","Feburary","March","April"};
    printf("the third month is: %s ",arr[2]);
}

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