Swift - Optionals
What will be printed by this Swift code?
var age: Int? = 25
if let actualAge = age {
print("Age is \(actualAge)")
} else {
print("Age is unknown")
}