<?php

// your code goes here

class Foo
{
	public $bar = 'I am bar';
}

$foo = new Foo;
$property = 'bar';
$array = ['one', 'bar', 'three'];

echo $foo->$property . "\n";
echo $foo->$array[1];