viewof options_list = checkbox({
title: "Colors",
description: "Please select your favorite colors",
options: [
{ value: "1", label: "Red" },
{ value: "2", label: "Orange" },
{ value: "3", label: "Yellow" },
{ value: "4", label: "Green" },
{ value: "5", label: "Blue" },
{ value: "6", label: "Indigo" },
{ value: all_of_the_above, label: "All of the Above" }
],
value: starting,
submit: false
})