Another data type is the <dfn>Boolean</dfn>. <code>Booleans</code> may only be one of two values: <code>true</code> or <code>false</code>. They are basically little on-off switches, where <code>true</code> is "on" and <code>false</code> is "off." These two states are mutually exclusive.
<strong>Note</strong><br><code>Boolean</code> values are never written with quotes. The <code>strings</code><code>"true"</code> and <code>"false"</code> are not <code>Boolean</code> and have no special meaning in JavaScript.
</section>
## Instructions
<sectionid='instructions'>
Modify the <code>welcomeToBooleans</code> function so that it returns <code>true</code> instead of <code>false</code> when the run button is clicked.
- text: 'The <code>welcomeToBooleans()</code> function should return a boolean (true/false) value.'
testString: 'assert(typeof welcomeToBooleans() === ''boolean'', ''The <code>welcomeToBooleans()</code> function should return a boolean (true/false) value.'');'
- text: <code>welcomeToBooleans()</code> should return true.
testString: 'assert(welcomeToBooleans() === true, ''<code>welcomeToBooleans()</code> should return true.'');'