'The odin project rock, paper, scissor always a tie

I have been trying to complete the odin projects console-based rock, paper, scissors game and I think I have most of it done. For some reason however, the result of the game is always a tie and I cannot figure out what the problem is. Furthermore, the program runs once before going on the loop for five rounds. I would appreciate if anyone could offer some advice as to what I'm doing wrong. Here's the code:

let choices = ["rock", "paper", "scissors"]
let userScore = 0;
let computerScore = 0;
let playerSelection = playerPlay();
let computerSelection = computerPlay();


function playerPlay(){
    //player input
    let playerChoice = prompt("Please type either 'rock', 'paper' or 'scissors' to play: ").toLowerCase();
    return playerChoice;
}

function computerPlay(){
    //computer chooses one of the three choices at random
    let random = choices[Math.floor(Math.random() * choices.length)];
    return random;
}

function playRound(playerSelection, computerSelection) {
    //one round of the game

    computerPlay();
    playerPlay();
    
    
    if (playerSelection === computerSelection) {
        return("It is a tie!");
    }

    else if (computerSelection === "rock" && playerSelection === "paper") {
        userScore++;
        return("You win! Paper beats rock");
    }

    else if (computerSelection === "scissors" && playerSelection === "rock") {
        userScore++;
        return("You win! Rock beats scissors");
    }

    else if (computerSelection === "paper" && playerSelection === "scissors") {
        userScore++;
        return("You win! Scissors beats paper");
    }

    else if (computerSelection === "rock" && playerSelection === "scissors") {
        computerScore++;
        return("You lose! Rock beats scissors");
    }
    
    else if (computerSelection === "paper" && playerSelection === "rock") {
        computerScore++;
        return("You lose! Paper beats rock");
    }

    else if (computerSelection === "scissors" && playerSelection === "paper") {
        computerScore++;
        return("You lose! Scissors beats paper");
    }
}

function game(){
    //play the game for five rounds
    for (let i = 0; i < 5; i++) {
    playRound();
    console.log(`You ${userScore} vs. ${computerScore} Computer`);     
    }
    
}

game();


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source