PHP Arrays
What will be the output of the following PHP code?
$names = array("Sam", "Bob", "Jack");
echo $names[0] . "is the brother of " . $names[1] . " and " . $names[1] . ".".$brother;

Error
Sam is the brother of Bob and Bob) $brother
Sam is the brother of Bob and Bob)
$brother

ANSWER DOWNLOAD EXAMIANS APP