multidimensional boolean array ? how too ?

hi,

i am needing to setup a multidimensional array of booleans but have no idea if you can in unity or how to do it.
I have researched this already and found a link to a site that mentions you need to declare it in c# but you can use it in js
here is the site link

they show the code to setup an int array but ive no idea how to change this to be a boolean array.
I am an artist learning to code so its not obvious to me as ive never done anything in C# before so any help on how to make this a boolean array would be fantastic.

using UnityEngine;

public class MultiDim : MonoBehaviour {
    public static int[,] IntArray2D (int x, int y) {
        return new int[x,y];
    }
}
    public static bool[,] BooleanArray2D (int x, int y) {
        return new bool[x,y];
    }

–Eric

awesome, thanks dude :smile: