Duodecimal
Giga Guru

The 'simplest' way is to call on a method within the script include VariableUtils, and you will need to pass the sys ID of the variable set, along with the multi-row variable object, as parameters. For the sys_id, normally you'd be able to use getGlideObject on the variable, but that doesn't return anything for multi-row variable sets. 

The variable set lives on item_option_new_set, so you can look for the variable name there in the internal_name field to get the sys_id:

var ios = new GlideRecord("item_option_new_set");
ios.get("internal_name", mrvs_name);
var setID = ios.sys_id;

(Variable names, set or non-set, should be unique)

 For the variable itself, that would just be current.variables.mrvs_name. So with that you can call on VariableUtils to get the display values in one swoop:

var vu = new VariableUtil(); 
var mrva = JSON.parse(vu.getDisplayValue(setID, current.variables.mrvs_name));

Then you can step through mrva (Multi-Row Variable Answers), which is an array of objects. Each array element is a row, and each row contains a name:value pair -- the name being the question variable name, and the value being the display value of the answer. 

for (var row = 0; row < mrva.length; row++) { 
   for (var question_name in mrva[row]) { 
      var displayValue = mrva[row][question_name];
   } 
}

You'll need to do more work to get the question label, and to sort them in the same order as shown within the MRV and on the form itself, and so on.  Later today or tomorrow I'll be putting up the code I'm using to compose both HTML emails for approvals along with a plaintext output for catalog task or record producer descriptions - the code has to work for any catalog item, so hard-coding the names of various MRVS is a non-starter.