Swift - Functions
What will be the output of this Swift code?
func multiply(_ numbers: Int...) -> Int {
var result = 1
for num in numbers {
result *= num
}
return result
}
print(multiply(2, 3, 4))