Não foi possível remover "Opcional" da String

Abaixo está o meu trecho

// MARK: - Location Functions
    func getCurrentLocation() -> (String!, String!) {
        let location = LocationManager.sharedInstance.currentLocation?.coordinate
        return (String(location?.latitude), String(location?.longitude))
    }

    func setCurrentLocation() {
        let (latitude, longitude) = getCurrentLocation()
        let location = "\(latitude!),\(longitude!)"
        print(location)
    }

Embora eu desembrulhe opcional usandolatitude! elongitude!me imprimeOptional(37.33233141),Optional(-122.0312186)

Estou quebrando a cabeça para remover a ligação opcional.

questionAnswers(2)

yourAnswerToTheQuestion