I've got 2 arrayys and I want to add the values of each of the keys together
const baseStats = { CHA: 2, CON: 1, DEX: 1, HP: 12, INT: 1, STR: 2, WIS: 1 };
const bonusStats = { CHA: 0, CON: 0, DEX: 0, HP: 2, INT: 0, STR: 2, WIS: 1 };
Expected result = { CHA: 2, CON: 1, DEX: 1, HP: 14, INT: 1, STR: 4, WIS: 2 };