Swift - Functions
Find the problem in this Swift code snippet:
func outer() {
func inner() {
print(message)
}
let message = "Hello"
inner()
}
outer()