What does `t.handler()` log, given the arrow-function class field?class Timer { seconds = 10; handler = () => this.seconds; } const t = new Timer(); const h = t.handler; console.log(h());