ArrayPrefs2

I want to store int array of highscore using ArrayPrefs2… I want to manage highscore for perticular level…

For that i have tried something like this. but its not working…

function SaveDate()
{
    PlayerPrefsX.SetIntArray ("highScorelist",highScoreList);
}

function LoadData()
{
    highScoreList =  PlayerPrefsX.GetIntArray ("highScorelist" , -1 ,10);
}

But its not correct…
Anyone pleaze guide me to manage highscore…

Pleaze help me…

Thanks for your support and help…

the code provided with playerprefsX difined it. you need that code.