You want to access the 3rd character of a string, contained in the variable $test. Which of the following possibilities work?(Choose 2)
echo $test(3)
echo $test[2];
echo $test(2);
echo $test{2};
echo $test{3}
Submit