double? getAt(int index) { if (index < array.length) { return array[index].toDouble(); } else { return null; } }