OSC Sender - send StringArray

Hello friends.
I want to transfer list of songs from ListBox to Android Remote App, but I didn’t find any example, Please help.

void GUI::ListBoxComponent::checkPlaylist()
{
    AudioFormatManager audioFormatManager;
    audioFormatManager.registerBasicFormats();
    String audioFormats = audioFormatManager.getWildcardForAllFormats();
    totaltimeseconds = 0.0;
    for(int i = 0; i < songList.size(); i++)
    {
	    File file (filePath.getReference(i));
            songList.getReference (i) -> ??? *//send to OSCSender*
            songDuration.getReference(i) -> ???
    }
}

Also, I still don’t understand how to receive this information through the OSCReceiver.
Thanks in advance.