Output collection: myNumbers22
| Value |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
Solution code:
//Create a single column collection
ClearCollect(myNumbers22,[1,2,3,4,5]);
Output collection: myMonths22
| Month |
| January |
| February |
| March |
| April |
| May |
Solution code:
//Create a single column collection
ClearCollect(
myMonths22,
{Month: "January"},
{Month: "February"},
{Month: "March"},
{Month: "April"},
{Month: "May"}
);