0 / 60 seg.

What value is obtained when executing the following code?

function fillArray(value = 0, length = 5) {
  return Array(length).fill(value);
}
console.log(fillArray());