function createIntInRange(int startRange, int endRange)returnsint|Error
Generates a random number between the given start(inclusive) and end(exclusive) values.
Please note that the generated number is not cryptographically secured.
int randomInteger =check random:createIntInRange(1, 100);