// myFunction receives an array of objects and a limit amount // it should return an array containing the decisions that have amounts <= limit // if the min_amount <= limit && max_amount >= limit, the value should be replaced by the limit amount // Example: const decisions = [ { grade: 'A', min_amount: 3500, max_amount: 4375, }, { grade: 'B', min_amount: 4375, max_amount: 5250, }, { grade: 'C', min_amount: 5250, max_amount: 6125, }, { grade: 'D', min_amount: 6125, max_amount: 7000, }]; const limit = 5693; const result = myFunction(decisions, limit); console.log(result); /* [ { grade: 'A', min_amount: 3500, max_amount: 4375 }, { grade: 'B', min_amount: 4375, max_amount: 5250 }, { grade: 'C', min_amount: 5250, max_amount: 5693 } ] ; */