It is an easy option of using the Selection Tool "+" and the selecting and dragging the table to the bottom of the output;
txnelson_0-1628790482178.png
However, I have not been able to delete the original table.
The following JSL does move the table and delete the old table
txnelson_1-1628790596288.png
Names Default To Here( 1 );
x = Current Report();
x[Outline Box( 1 )] << append( x[Outline Box( 2 )] );
x[Outline Box( 2 )] << delete;
Jim