PowerShell - Working with Objects
What will be the output of this PowerShell code?
$obj = New-Object PSObject
Add-Member -InputObject $obj -MemberType NoteProperty -Name Color -Value 'Red'
Write-Output $obj.Color
