@override String? rightStringAtIndex(int index) { if (index >= 0 && index < rightList.length) { return rightList[index]; } else { return null; } }