I want to have a multiple select when editing a row. This is currently what I have

I want to change it to multiple select, and whenever I add more items, it gets appended to the Tank column as a string. This is the code for my columns :
const columns = [
{
title: "Level",
field: 'sequence',
editable: 'onAdd',
},
{
title: 'Tank',
field: 'tankNo',
},
{
title: "Select ",
field: 'tankNo',
lookup: { 'test1': 'select1', 'test2': 'select2' }
}
];
You will need to set multiple to true for the Select and use an array to store the value instead of string
Updated usage with material table