I have two text boxes and user can input 2 positive integers (Using Objective-C). The goal is to return a random value between the two numbers.
I\'ve used \"man arc4
In Swift:
let otp = Int(arc4random_uniform(6))
Try this.