PowerShell - Functions
Given this advanced function, what will be the output when called as
Get-Info -Verbose?
function Get-Info {
[CmdletBinding()]
param()
Write-Verbose "Starting function"
Write-Output "Info retrieved"
}