El Misterio del Tiempo Congelado

Dificultad: Difícil JavaScript advanced coding
const reloj = () => {
    let tiempo = 0;
    return async () => {
        await new Promise(r => setTimeout(r, 100));
        return tiempo++;
    };
};
const tick = reloj();
Promise.all([tick(), tick(), tick()]).then(t => console.log(t));
📥 Inputs:
N/A
❓ ¿Cuál es el output?
Ingresa tu respuesta abajo