PowerShell Array Pipe Foreach

$arr = @("A", "B", "C")
$arr | ForEach-Object { Write-Host $_ }
A
B
C
Av3