how to convert Range to Array
I tried:
let min = 50 let max = 100 let intArray:[Int] = (min...max)
get error Range is
Range is
Use map
map
let min = 50 let max = 100 let intArray = (min...max).map{$0}