Lua has different types of data to help you organize information! ๐
The main types are "numbers," "strings," and "tables." Numbers can be whole numbers (like 5) or decimals (like 3.14). Strings are
words or sentences, like `"I love coding!"`. Tables are special because they can hold many items in one place, like a box! ๐
You can even use tables to create lists or group things together. For example:
```lua
myTable = {1, 2, 3, "A", "B"}
```
With Lua, organizing data is easy and fun! ๐