PowerShell - Working with Objects
What will be the output of this code?
$list1 = 1,2,3,4
$list2 = 3,4,5,6
Compare-Object -ReferenceObject $list1 -DifferenceObject $list2 -ExcludeEqual
