Ethernaut getBalance(player)-Promise won't resolve

Hi,
Im trying to play Ethernaut and at Level 0 Point 3 it tells me to call getBalance(player) and expand the Promise, but the Promise is not resolving and just keeps pending.

:1234: Code to reproduce

getBalance(player)

:computer: Environment

OS: Ubuntu 20.04 x86-64
Browser: Google Chrome Version 98.0.4758.102
Wallet: MetaMask Version 10.10.1 on Rinkeby test network

Hi, welcome to the community! :wave:

Just like the message, the type of the returning result is a Promise, and a Promise is a placeholder for a value that will be available in the future.
so you can use await getBalance(player)

And maybe you can have a look at this for more info: Understanding JavaScript Promises

It may be an issue with the Rinkeby network.