var firstQuestion = {
  question: "What does the heaviest cat in the world weigh?",
  answers: ["50lb", "20lb", "5lb", "70lb"],
  correctAnswer: this.answers[0]
}
I can't get correctAnswer to work. If I pull it out of the object, it works, but inside of the object, it won't refer to the array at all. What's the deal?
