Server.setpermanentvalues()

looking at http://devwiki.electricimp.com/doku.php?id=electricimpapi:server:setpermanentvalues
it is not clear to me how to save multiple values to the server

It saves a table; just add items to the table:

server.setpermanentvalues({savedCount = count, secondvalue = “blah”, etc = 1234.56});

great, thanks