Is arrayName.length a property of an object? if so which object?

The confusing part for me is the dot notation. The dot notation is used for accessing property values of an object, which is also used in finding a length of an array

const numbers =[23,45,76,78];
console(numbers.length);