Swift - Optionals
What will be the output of the following Swift code?
var name: String? = "Alice"
if let unwrappedName = name {
print("Hello, \(unwrappedName)!")
} else {
print("No name provided.")
}