Quick question, I have an array of objects:
var objects = [
{username: jon, count: 5},
{username: sally, count: 7},
{username: mark, count: 9,
]
I want to output one of these objects at random so that I can access its properties and not just it's index. How do I do this?