How to reformat json in java script [closed]

json that i get from api

[
  {
    "value": "45",
    "timestamp": "2022-01-21T00:00:12.847",
    "id": "cabc6d20-f305-4a1c-888c-dca2043a06ba",
    "ru": "R401",
    "area": "area-1",
    "unit": "33",
    "equipment": "radio",
  },
]

what i want

[
 {
   "id": "946362d4-5e65-421f-8669-c89fa37bb6e7",
   "equipment": "radio",
   "area": "area-1",
   "value": "45",
  },
]

what i want is the order is change, and only pick some key.

thanks for help