function solution(numbers) {
const answer = [];
for (let number of numbers) {
let bit = BigInt(number);
if (bit % BigInt(2) === BigInt(0)) {
answer.push(Number(bit + BigInt(1)));
} else {
let mask = BigInt(1);
let lowBit = BigInt(0);
while (bit & mask) {
lowBit = mask;
mask <<= BigInt(1);
}
answer.push(Number(bit + lowBit));
}
}
return answer;
}