Summary of the new feature/enhancement
Currently, you can only obtain multiple values with -Count if you supply an input collection to select random elements from.
However, sometimes you want to generate multiple random values from a given range, such as "generate 3 random values in the range 0 to 1":
# WISHFUL THINKING - currently, you have to call Get-Random in a *loop*.
PS> Get-Random -Maximum 1.0 -Count 3
0.00964209344687038
0.399765062797705
0.589964029188251
Proposed technical implementation details
Allow combining parameter -Count with (implied) -Minimum and /or -Maximum as well, in which case -Count simply specifies how many values in the range to generate.