I have an array that looks like this:
const arr = [ 
    { "-MrUU6N2pi7aCwJoqCzP": { "name": "test", "brand": "test", "id": 1 } }, 
    { "-MrUUB4PcPD5G45NGb-y": { "name": "test2", "brand": "test2", "id": 2 } } 
]
How do I find the index of the object with the key "-MrUUB4PcPD5G45NGb-y" for example?
 
     
    