var fruits = ['oranges', 'bananas', 'apples'];
var scores = [98, 85, 91, 78, 82];
var firstFruit = fruits[0];
var thirdScore = scores[2];
('firstFruit:', firstFruit);
('thirdScore:', thirdScore);

What would be the produced?