PowerShell copy an array completely

# Copy the array here
$FruitsCopy = @()
$FruitsCopy = $FruitsCopy + $FruitsOriginal

Leave a Comment