Pass string variable to const options

hey totally new to moralis and i am trying to pass authenticated users wallet address to the const options but i keep getting an error here is the code

async function gettransfererc20({ethAddress3}) {
// sending 0.5 tokens with 18 decimals

        const options = {
        type: "erc20",
        amount: Moralis.Units.Token("0.5", "18"),
        **receiver:  'ethAddress3',**
        contractAddress: "0x06423472ecc1157b50310d7aae92c3a46fa4e7b9",
    };
let result = await Moralis.transfer(options);

}

here is the error
Uncaught (in promise) Error: resolver or addr is not configured for ENS name (argument=“name”, value=“ethAddress2”, code=INVALID_ARGUMENT, version=contracts/5.6.0)

try to use console.log, to do some debugging, it looks like you set a string there instead of the value for a variable

yes i am trying to pass a sting into the receiver params and when i console.log ethaddress3 it gives me the eth address as a string. is there a proper way to do this because i have the eth address stored from
let ethAddress = user.get(“ethAddress”);
let ethAddress3 = ethAddress;