---
tags: mstu5003, challenge
---
# MONOPOLY GAME BOARD
Also, found this to be interesting. Someone created a circular MONOPOLY game board.
- https://codepen.io/dilx/pen/vYYrxpd?editors=1010
What’s interesting to us (objects and arrays) is to look at how this author structures their data array of objects.
- What is this an array list of?
- What does each object represent?
The author does some “fancy” things by dynamically generating, actually DRAWing new SVG images for each block in the circle. There are easier ways we could do this just using HTML, CSS, and some transparent PNGs.
## CHALLENGE
- Can you create a monopoly board using a similar data Array of Objects?
- You only need about 3 objects in your array to prove you can do it with more.
- For this challenge, I only care that you can make a LINEAR board. (Doesn’t have to be circular.)
- Lastly - can you model the concept of a players token moving forward on this board?
- **BONUS**: add a "dice roll" that will move players across the linear board.