What does the elvis operator (`?:`) do in this expression?val name: String? = getName() val display = name ?: "Guest"