To reverse the column order (for any data type), I use:
=LET(ncol, COLUMNS(array),
CHOOSECOLS( array, SEQUENCE(,ncol,ncol,-1)) )
I actually define a function, REVERSE_COLS(array), to do this:
=LAMBDA(array,
LET(ncol, COLUMNS(array),
CHOOSECOLS( array, SEQUENCE(,ncol,ncol,-1)) ))
To reverse the row order, I do the same, but use ROWS and CHOOSEROWS in place of COLUMNS and CHOOSECOLS.