I got a pool of numbers (for example {3,6,7,11,20}) and i need each number to appear in my collection x times.
My solution was to create a class, let\'s call it \"el
Another Easiest way is to use Windows PowerShell
Get-Random 3,6,7,11,20
That't it