0 / 60 seg.

What is the result of the following code?

let sum = 0;
for (let i = 1; i <= 2; i++) {
  for (let j = 1; j <= 2; j++) {
    sum += i + j;
  }
}
console.log(sum);