0 / 60 seg.

What value is obtained when executing object.add(4, 5) in the following code?

const object = {
  add: function(a, b) {
    return a + b;
  }
};