9 lines
214 B
PowerShell
9 lines
214 B
PowerShell
$xmen = @('Wolverine', 'Cyclops', 'Storm', 'Professor x', 'Gambie', 'Dr. Jean Grey')
|
|
$counter = 0
|
|
|
|
While ($counter -ne 6){
|
|
Write-Host $xmen[$counter] "is a mutant!"
|
|
$xmen[$counter].Length
|
|
$counter++;
|
|
}
|