Tronweb USDT20 Transfer FAILED -TRANSACTION REVERT>

Hello i want to transfer USDT with TRC20 by using tronWeb.I get the txid and everything but i somehow i cant trigger the smartcontract.So this is my code below:`const TronWeb = require(‘tronweb’);

// Create a TRON instance
const tronWeb = new TronWeb({
  fullHost: 'https://api.trongrid.io', // Use the TRON full node URL
});

// Function to send USDT TRC20 tokens
async function sendUsdt(addressTo, amount, privateKey) {
  try {
    // Convert the amount to SUN
    const amountSun = tronWeb.toSun(amount.toString());

    // Get the contract address of USDT TRC20 token
    const usdtContractAddress = 'TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t'; // USDT TRC20 contract address

    // Get the address associated with the private key
    const ownerAddress = tronWeb.address.fromPrivateKey(privateKey);

    // Create the transfer transaction data
    const transferData = await tronWeb.transactionBuilder.triggerSmartContract(
      usdtContractAddress,
      'transfer',
      {
        _to: addressTo,
        _value: amountSun
      },
      [],
      ownerAddress // Set the owner_address parameter
    );
    transferData.transaction.fee = fee;

    // Sign the transaction
    const signedTransaction = await tronWeb.trx.sign(
      transferData.transaction,
      privateKey
    );

    // Broadcast the transaction
    const receipt = await tronWeb.trx.sendRawTransaction(
      signedTransaction
    );

    console.log('Transaction receipt:', receipt);
  } catch (error) {
    console.error('Failed to send USDT:', error);
  }
}

// Usage: Call the sendUsdt function with the recipient's address, amount, and private key
const recipientAddress = 'TRECIPENT';
const amount = 10; // Amount of USDT to send
const privateKey = 'MY_PRIV_KEY'; // Set your private key here
const fee = 100000; // Fee value in SUN

sendUsdt(recipientAddress, amount, privateKey,fee);

`
And this is the output of the transaction : https://tronscan.org/#/transaction/e76d76d8898e7418cdb558573e90a3cc7b28e94da245df3990aa46f7d4fecc88
What should i try to avoid this? Thanks in advance.