Help me in solving STRJ6V2 problem

My issue

My code

class Codechef
{
	public static void main (String[] args)
	{
		// your code goes here
		String word = "Ocygen";
        char[] wordArray = word.toCharArray();
        wordArray[_] = '_';
        word = new String(wordArray);
        System.out.println(word);
	}
}

Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone

@ayuwushh
U have to replace the blanks with correct logic and syntax
Like for this prb it goes like this:-

class Codechef
{
	public static void main (String[] args)
	{
		// your code goes here
		String word = "Ocygen";
        char[] wordArray = word.toCharArray();
        wordArray[1] = 'x';
        word = new String(wordArray);
        System.out.println(word);
	}
}