0 / 60 seg.

What is the result of the following code?

function repeat(text) {
  function double() {
    return text + text;
  }
  return double();
}
console.log(repeat("Hello"));