I have this expression which returns a UInt32:
UInt32
let randomLetterNumber = arc4random()%26
I want to be able to use the number in
Int(arc4random_uniform(26)) does two things, one it eliminates the negative results from your current method and second should correctly creat an Int from the result.
Int(arc4random_uniform(26))