I have smth like this
const activeLang = 'pl'
 
const uniqueCategories = products.map((product) => {
      return product.category_pl
    })
How do I make this the same but with using template string. It should be smth like this
product.category`_${activeLang}
But it doesn't work. Any help?
 
    