Giving a SWAG at the data to be displayed, here is something you can expand upon.
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0, user-scalable=yes"/>
<title> Template Literals </title>
<!-- From: https://www.webdeveloper.com/d/392388-how-to-handle-and-interpolate-a-dynamic-template-literal-strings-format -->
<style>
</style>
</head><body>
<script>
// cardLabel’s dynamic template literal string's format examples:
const cardLabel1
= (Group,Desc,termMonth,termOdometer,DeductibleAmount,DeductibleType) =>
`${Group} ${Desc} - ${termMonth} Month - ${termOdometer} KMs/Miles ${DeductibleAmount} ${DeductibleType}`;
const cardLabel2
= (Group,Desc,termMonth,termOdometer,DeductibleAmount,DeductibleType) =>
`${Desc} - ${termMonth} Month - ${termOdometer} KMs/Miles`;
const cardLabel3
= (Group,Desc,termMonth,termOdometer,DeductibleAmount,DeductibleType) =>
`${Desc} ${Group} - ${termMonth} Month`;
const cardLabel4
= (Group,Desc,termMonth,termOdometer,DeductibleAmount,DeductibleType) =>
`${Group} ${Desc} - ${termMonth} Month ${DeductibleAmount}`;
console.log(cardLabel1('Group','Description','January','1000','DeductAmt','DeductType'));
console.log(cardLabel2('Group','Description','April','4000','DeductAmt','DeductType'));
console.log(cardLabel3('Group','Description','July','7000','DeductAmt','DeductType'));
console.log(cardLabel4('Group','Description','October','10000','DeductAmt','DeductType'));
console.log();
// Alternative constructs
const cardLabelA
= (Group,Desc,termMonth,termOdometer,DeductibleAmount,DeductibleType) =>
`${Group} ${Desc} - ${termMonth} Month - ${termOdometer} KMs/Miles ${DeductibleAmount} ${DeductibleType}`;
const cardLabelB
= (Desc,termMonth,termOdometer) =>
`${Desc} - ${termMonth} Month - ${termOdometer} KMs/Miles`;
const cardLabelC
= (Group,Desc,termMonth) =>
`${Desc} ${Group} - ${termMonth} Month`;
const cardLabelD
= (Group,Desc,termMonth,DeductibleAmount) =>
`${Group} ${Desc} - ${termMonth} Month ${DeductibleAmount}`;
console.log(cardLabelA('Group','Description','January','1000','DeductAmt','DeductType'));
console.log(cardLabelB('Description','April','4000'));
console.log(cardLabelC('Group','Description','July'));
console.log(cardLabelD('Group','Description','October','DeductAmt'));
</script>
</body></html>