Just FYI, here is my final sample script, and works like a charm. Thanks again Don for the proper push.
$strComputers = "Computer1", "Computer2"
Foreach ($strcomputer in $strComputers)
{
If (!(Test-Connection -ComputerName $strComputer -Count 1 -Quiet))
{
$whatever = "Not Online"
$properties = @{'ComputerName'=$strComputer; 'Status'=$whatever}
New-Object -Type PSObject -Prop $properties
}
}