void main() { List nums = [3, 5, 8, 4, 2]; // 0 1 2 3 4 print(nums.length); nums.remove(8); print(nums.length); }