Error in user YAML: (<unknown>): mapping values are not allowed in this context at line 6 column 7
---
# BẠN LÀM ĐƯỢC RỒI!
Anything between the parentheses of `console.log()` are printed to the terminal.
Bất cứ điều gì giữa dấu ngoặc đơn của `console.log()` là được in ra thiết bị đầu cuối của bạn (terminal).
Vì vậy:
```js
console.log('hello');
```
sẽ in ra chuỗi `hello` trên terminal của bạn.
In the next challenge we focus on learning about **variables**.
Trong thử thách tiếp theo, chúng tôi tìm hiểu về **biến**.
Chạy `javascripting` trong console của bạn để lựa chọn các thử thách tiếp theo.
---