How to get a gameObject out of an object array?

How to get a gameObject out of an object array ? I have something like this:

public object object content = new object { gameObject, 1};

public gameObject Person;

Start()
{
Person = content [0]; // That doesnt work. But how should I do it then? Thanks in advance,

Person = content [0] as GameObject;

object content = new object[1] {gameObject};