its not working ....
If you wanted to retrieve the highest score you would use offset of 0 (not 1). And so to retrieve the 6th highest score you need an offset of 5.
SELECT id FROM members ORDER BY score desc LIMIT 5, 1;
In English I think the above says something like, "skip the first five rows and then retrieve one row."