If there is an object structured like this:
let example = {
key1: "data1",
key2: "data2",
key3: "data3",
key4: "data4",
key5: "data5"
}
Given that the keys are fixed but not always in a specific order, what would be the most efficient way to transform this object into the following format:
let example_copy = {
newKey1: "data1",
concatenatedKey: "data2, data3, data4, data5"
}