You need to pass in the arrng controller address on your constructor call, and pass that to the consumer contract you have imported. First, lookup the controller contract on your chain.
Pass that into your constructor, and on to the consumer as follows:
Request RNG
You need a payable method that you can call to request the RNG, passing in native token for gas and the fee. See getting a cost estimate for how much to pass.
To make a request you then simply need to call requestRandomWords on the controller, passing the native token:
Receive RNG
Finally, you need to do something with the RNG that will be passed back. To do this, override the internal function fulfillRandomness as follows: