var newArr: [Int] = [] for value in arrayOfInt { newArr.append(value*10) } print(newArr) // prints [20, 30, 40, 50, 40, 70, 20]