What is the output of the following code?
$first = "second";
$second = "first";
echo $$$first;
first
second
an empty string
an error
Submit