xxxxxxxxxx
const addValues = (arr, value) => {
arr.push(value);
// Solution code here...
};
const addNumbers = (num, arr, times) => {
num =8 ;
arr=[];
for(times = 0 ; times<5 ; times ++ ){
arr.push(num) ;
}
return arr ;
// Solution code here...
};