How can I get the numberOfMarkers out of the reading method of Firebase in Swift? 
if I use the function in the {} this will save and I will be can use it not in the {}?
docRef = Firestore.firestore().document("Markol/Markers")
docRef.getDocument{ (docSnapshot, error) in
    guard let docSnapshot = docSnapshot, docSnapshot.exists else {return}
    let myData = docSnapshot.data()
    let numberOfMarkers = myData?["NumberofMarkers"] as? Int ?? 0
}
//Here i want to get the let numberOfMarkers
    var markerArrayList = [GMSMarker]()
    func makeAMarker(_ Latitude:Double , _ Longitude:Double , _ Title:String,Snippet:String) -> GMSMarker{
        let GmMarker = GMSMarker()
        GmMarker.position = CLLocationCoordinate2D(latitude: CLLocationDegrees(Latitude), longitude: CLLocationDegrees(Longitude))
        GmMarker.title = Title
        GmMarker.snippet = Snippet
        GmMarker.icon = UIImage(named: "smallStoreIcon")
        return GmMarker
    }
 
     
    