How to know gender of system voice

I would need to know which gender is used by the iOS system for speechSynthesis.

I have tried

            let aVoice = AVSpeechSynthesisVoice()
            print(#function, #line, aVoice.gender.rawValue)

But always get 0, for unspecified

How to know gender of system voice
 
 
Q