currently this displays an array of objects on the page . I only want it to display the name and the points with a few spaces in between . for example , Player1 25 . I don't want anything else like the []{} etc
<p id="demo"></p>
<script>
Player1 = { name: 'Player1', points: 25 };
Player2 = { name: 'Player2', points: 50 };
Player3 = { name: 'Player3', points: 14 };
players = [Player1, Player2, Player3];
document.getElementById("demo").innerHTML = JSON.stringify(players) ;