Minimum value from list of numbers

$sum = $NumberArray | Measure-Object -Minimum 
$sum.Minimum
Details
Use to get the minimum value of a number array

Example
PS C:\> $NumberArray = 10,23,24,43,118,23,43
>> $sum = $NumberArray | Measure-Object -Minimum
>> $sum.Minimum

10