You can also pipe it to select object to get both the name and powershell version
Find-Module -Name AzureAD | Select-Object -Property Name, @{Name="PowerShellVersion";Expression={$_.AdditionalMetadata.PowerShellVersion}}
Hope this helps