The combine function accepts the perameter of x and adds x to itself when called. This is a simple function written from scratch for the purposes of this assignment.
function combine(x) {
return x + x;
}
const combine = function(x){
return x + x;
}
const combine = (x) => x + x;