This formula stacks the data from the same array B4:G25 on each sheet, then randomly sorts all the rows of the stacked data, then selects the top row from the random sort:
=LET(a, VSTACK(Sheet1:Sheet4!B4:G25), TAKE(SORTBY(a, RANDARRAY(ROWS(a))),1))