var dynastyReign = [
{"San Dynasty": "MXLI"},
{"Viloria Dynasty": "MCCCIIII"},
{"Tan Dynasty": "MCCCXCVIII"},
{"Bon Dynasty": "MCDXLV"},
{"Maiko Dynasty": "MDCLXIV"},
{"Paul Dynasty": "MCMXLIX"},
{"Andre Dynasty": "MMMXICX"}
];
document.write(dynastyReign.toString());
I tried to output this array with two values on each one using toString, but the output only gives me [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
.
How do I stop the object word from showing, and if possible i would also like only the roman numeral part shown, removing the "Dynasty".