PowerShell - Control Flow
How can you modify this nested loop to stop both loops when $i equals 2 and $j equals 3?
for ($i=1; $i -le 3; $i++) {
for ($j=1; $j -le 5; $j++) {
if ($i -eq 2 -and $j -eq 3) { break }
Write-Output "$i,$j"
}
}