It is unclear what you want because we don't know the dimensions of your array or whether you want to count blank cells that may be in the array.
If you want to know only how many rows there are including blanks, then wrap your formula in =ROWS( )
.
If you want to know only how many columns there are including blanks, then wrap your formula in COLUMNS( )
.
If you want to know how many cells there are in the array total including blanks, then use this pattern (where your formula is placed between each set of parentheses): =ROWS( ) * COLUMNS( )
.
If you want to know how many non-null (i.e., not blank) entries there are in the array, then wrap your formula in =COUNTA( )
.