I created a list called imageNames. and i used thise chunk of code to get a random image
@IBAction func showImages(_ sender: Any) {
let RandomImage: Int = Int
(arc4random_uniform(20))
imageOne.image = UIImage (named:
imageNames[RandomImage])
for some reason it won't work for me. i thought about making a var instead og let but still it gives me an error at int = int
anyone care to assist?