var board = [
[" ", "1", "2", "3"],
["1", "□", "□", "□", "▏"],
["2", "□", "□", "□", "▏"],
["3", "□", "□", "□", "▏"]
]
function printBoard () {
console.log(board[0][0], board[0][1], board[0][2], board[0][3]);
console.log(board[1][0], board[1][1], board[1][2], board[1][3], board[1][4]);
console.log(board[2][0], board[2][1], board[2][2], board[2][3], board[2][4]);
console.log(board[3][0], board[3][1], board[3][2], board[3][3], board[3][4]);
}
function randomPCmove(min, max) {
let rand = min + Math.random() * (max + 1 - min);
return Math.floor(rand);
}
function makePCmove(x, y) {
}