In ThrusterTreasure.sol, requestRandomNumberMany() has incorrect array initialization, which causes the tx to revert. Specifically, a dynamic array uint64[] memory seqNums is declared as a return variable, but this variable is never initialized before writing to it through seqNums[i].
A dynamic array declared in memory needs to be initialized with length info first like this  seqNums = new uint64[](userCommitments.length).
(https://github.com/code-423n4/2024-02-thruster/blob/3896779349f90a44b46f2646094cb34fffd7f66e/thruster-protocol/thruster-treasure/contracts/ThrusterTreasure.sol#L228)
For reference, run the below test contract in remix, method1 will revert but method2 will succeed.
Initiate array seqNums first with length data before updating its value.
