here is code but it giving me any empty array
import Moralis from ‘moralis’;
await Moralis.start({
apiKey: "YOUR_API_KEY"
});
const response = await Moralis.EvmApi.nft.getWalletNFTs({
"chain": "0x89",
"format": "decimal",
"normalizeMetadata": true,
"disableTotal": true,
"tokenAddresses": [
"0xe43f418F51E9245a320ce3F0d4dC7Ede1C91D476"
],
"mediaItems": true,
"address": "0xeE2D061589aaDF19dfaacF7DD28c099776A3A954"
});
console.log(response.raw);
} catch (e) {
console.error(e);
}