The randomizer will never resolve the words they need to generate the token hash to set for the token id.
requestRandomWords() requests words with a tokenHash to the VRFCoordinatorV2 contract: RandomizerVRF.sol#L54-L55
That hash is initialized with its Goerli value:
The VRFCoordinatorV2 contract ignores invalid hashes:
VRFCoordinatorV2.sol#L386-L388
This leads to the NextGenRandomizerVRF being unable to resolve the words to set the token hash.
Define the tokenHash with a variable in the constructor.
