Build a Loan Qualification Checker - Step 3

Tell us what’s happening:

I dont understand what is going wrong with my code can someone give me some guidance please

Your code so far

// User Editable Region

const minIncomeForDuplex = 75000;
const minCreditScoreForDuplex = 700;

const minIncomeForCondo = 50000;
const minCreditScoreForCondo = 650;

const minIncomeForCar = 30000;
const minCreditScoreForCar = 600;



// User Editable Region

const minIncomeForDuplex = 60000;
const minCreditScoreForDuplex = 700;

// User Editable Region


const minIncomeForCondo = 45000;
const minCreditScoreForCondo = 680;

const minIncomeForCar = 30000;
const minCreditScoreForCar = 650;

function getLoanMessage(annualIncome, creditScore) {
  if(creditScore >= minCreditScoreForDuplex && annualIncome >= minIncomeForDuplex) {
    return "You qualify for a duplex, condo, and car loan."
  }

// User Editable Region

}
console.log(getLoanMessage(2, 3))


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Loan Qualification Checker - Step 3

you should be seeing an error in the console, you can’t redeclare variables like that

please reset the step and try again, do not assign again the variable values