Arrays & Array Methods (map, filter, reduce)

What is being determined by this findIndex operation?
const calendar = [
  [1, 2, 3, 4, 5, 6, 7],
  [8, 9, 10, 11, 12, 13, 14]
];
const dayIndex = calendar.findIndex(week => 
  week.includes(10)
);
Next Question (16/20)