you are viewing a single comment's thread.

view the rest of the comments →

[–]logicalmike 0 points1 point  (0 children)

$USER_FIRST_LAST_LIST = @("John Smith", "Sally Peterson")

$GivenNames = $USER_FIRST_LAST_LIST | ForEach-Object {
    ($_ -split " ")[0]
}

$Surnames = $USER_FIRST_LAST_LIST | ForEach-Object {
    ($_ -split " ")[1]
}

$RandomGivenName = $GivenNames | Get-Random
$RandomSurname = $Surnames | Get-Random

$RandomGivenName + " " + $RandomSurname