What is the type of `coords`, and which assignment is rejected?const coords: readonly [number, number] = [10, 20]; const x = coords[0]; // line A coords[0] = 99; // line B const all = [...coords]; // line C