Add support for array indexes in dot notation ```javascript const a = { a: [ { a: 'inside array', }, ], }; get(a, 'a[0].a'); // => "inside array" ```