Code for Task #1 - Random Random Roger Roger!

Nice, @JustPete! I found it perfectly comprehensible.

Here’s a tip for anyone who would like to post code formatted as monospace font. You can use a formatting language called Markdown. In markdown we use backticks (`) to surround `inline code snippets`, and three of them on their own line to make a monospaced code block:

``` 
// monospaced code here
```

To get code highlighting, you can add a language name right after the opening backticks:

```javascript
// Highlighted
function { var variable = 1 }
```

Will render as:

// Highlighted
function f { var variable = 1 }

Limited HTML is supported too. This is an <h3>.

2 Likes