Cannot access to Image (children of Button)

I create a image in a button and I’m trying to access and enable the image component in Image. Is not working, I have no clue why. Need help:) Thank you
6184474--677617--question4.png

 for (int i = 0; i < levelButton.Length; i++)
        {
_levelImage[i]= levelButton[i].GetComponentInChildren<Image>();
_levelImage[i].enabled = true;
}

Probably because there is an image component on the LevelButton() gameobject and it’s getting that as I believe getcomponentinchildren also searches the object the call it on.

looks like it is. how to avoid it?