In REPL, we currently have:
const a = 1;
undefined
const a = 2;
Line 1: Redeclaring variable a
Can we instead please have
Line 1: Redeclaring name a
The background: We try to avoid the term "variable" in Chapters 1 and 2. Instead, we use the term "name", or "constant".