Summary: Use Windows PowerShell to choose random letters.
How can I use Windows PowerShell to arrange five letters in a random order?
Use the Get-Random cmdlet, specify the letters as input values,
and then use the –count parameter to specify how many to choose:
Get-Random -InputObject 'a','b','c','d','e' -Count 5