Level 15 Intro

You have learned how to store numbers and text using variables, lists, maps, and grids.  In this level you will learn one final way to store values – Arrays.

Arrays are common to almost all programming languages.  Arrays allow you store many values under one variable name.   Arrays are similar to lists, but more simple to use.  There are certain game tasks that just don’t need the complexity of using the scripts that go along with lists.  That’s when arrays are great to use.  Lets go learn how to use arrays and show you some examples of how arrays can make your games easier to code.