pxt-microbit
Version:
micro:bit target for Microsoft MakeCode (PXT)
59 lines (41 loc) • 1.12 kB
Markdown
# spinner quiz answers
a spin the @boardname@ game with the input on shake.
## Name
## Directions
Use this activity document to guide your work in the [spinner activity](/lessons/spinner/activity).
Answer the questions while completing the tutorial. Pay attention to the dialogues!
## 1. Write the code that stores a random number between 0 and 3 into a local variable named 'random arrow'.
<br/>
```blocks
let randomArrow = randint(0, 4)
```
## 2. Write the if statement that will display this down arrow from your code. Hint- This occurs if the local variable 'random arrow' returns 1.

<br/>
```blocks
let randomArrow = randint(0, 4);
if (randomArrow == 1) {
basic.showLeds(`
. . # . .
. . # . .
# # # # #
. # # # .
. . # . .
`)
}
```
## 3. Write the if statement that will display this right arrow. Hint- This occurs if the local variable 'random arrow' returns 2.

<br />
```blocks
let randomArrow = randint(0, 4);
if (randomArrow == 2) {
basic.showLeds(`
. . # . .
. . # # .
# # # # #
. . # # .
. . # . .
`)
}
```