PowerShell - Working with Objects
What is the output of this PowerShell code?
$data = 1, 3, 5, 7, 9
$result = $data | Measure-Object -Minimum, -Maximum
$result.Minimum, $result.Maximum
