You can map your array to another array with the itens splitted, like so:
const resulting_array = receipts_array.map(x => ({name: x.split(' ')[0], points: +x.split(' ')[1]}))
Then you can sort your resulting array and get the first place.
const first_place = resulting_array.sort((a, b) => a.points < b.points ? 1 : -1)[0]
this way you'll have the object with the person with the highest pontuation.
console.log(first_place.name)
I'd recommend you to store the info in an array of objects like the one gotten from the map function thoug.