Javascript when button is clicked is being colored while the other buttons lose their color

I have an rate app box,
I want the user to rate the app from 1-5 by clicking one of five buttons.

The button that was clicked should have color, all the others none.

So if he clicked first on 3 and then 2, when clicking on 2 the color from the 3 button will be removed so only the last button was clicked (in this case 2) will have a color.

I DID manage to do it using button array, but i know for sure there is shorter way that isnt involved button array, only by code inside the function.

html:

  <body>
  <div class="container">
    <div class="img-container">
      <img src="./images/icon-star.svg" alt="" class="img-star">
    </div>
    
    <div class="content">
      <h1>How did we do?</h1>
      <p id="content-paragraph"> 
      Please let us know how we did with your support request. All feedback is appreciated 
      to help us improve our offering!
      </p>
    </div>

    <div class="buttons-container">
      <button value = 1  class="choose " id="btn-one" onclick="paintBtn(this)">1</button>
      <button value = 2 class="choose" id="btn-two" onclick="paintBtn(this)">2</button>
      <button value = 3 class="choose" id="btn-three" onclick="paintBtn(this)">3</button>
      <button value = 4 class="choose" id="btn-four" onclick="paintBtn(this)">4</button>
      <button value = 5 class="choose" id="btn-five" onclick="paintBtn(this)">5</button>
    </div>
    <form action="thankYou.html">
      <button id="submit">SUBMIT</button>
    </form>

    <script src="index.js"></script>
</body

js:

const buttonOne = document.getElementById("btn-one")
const buttonTwo = document.getElementById("btn-two")
const buttonThree = document.getElementById("btn-three")
const buttonFour = document.getElementById("btn-four")
const buttonFive = document.getElementById("btn-five")

const buttonsArr = [buttonOne, buttonTwo, buttonThree, buttonFour, buttonFive]

function paintBtn(button) {
    buttonsArr.map(btn => btn.classList.remove("btn-clicked"))
   button.classList.add("btn-clicked")
  
}

enter image description here