You can use Jquery's map
function. This will return array of "English","Spanish" and "German".
var myArray = $('#enable p').map(function(){
return $(this).text();
}).get();
For getting Id's list you can do this
var myArray = $('#enable p').map(function(){
return this.id;
}).get();
See jsfiddle http://jsfiddle.net/B3LuE/