1 2 3 4 5
function make_move(board, y ,x, new_y, new_x) { let temp = board[y][x] board[y][x] = 0 board[new_y][new_x] = temp }