Why is ,(1)[1] different from ,$null? · Issue #6357 · PowerShell/PowerShell

I'm trying to understand why the following two statements yield different outputs: &{,$null} | % {'x'} # x &{,(1)[1]} | % {'x'} # no output ,$null and ,(1)[1] both seem to be arrays containing a si...