static Question getQuestionByIndex(int index) { if (index < 0 || index >= _questions.length) { throw ArgumentError("题目索引超出范围: $index"); } return _questions[index]; }