Create a function, to compute the <b><ahref="https://en.wikipedia.org/wiki/Dot product">dot product</a></b>, also known as the <b>scalar product</b> of two vectors.
</section>
## Instructions
<sectionid='instructions'>
</section>
## Tests
<sectionid='tests'>
``` yml
tests:
- text: <code>dotProduct</code> should be a function.
testString: assert(typeof dotProduct == 'function', '<code>dotProduct</code> should be a function.');
- text: <code>dotProduct([1, 3, -5], [4, -2, -1])</code> should return a number.
testString: assert(typeof dotProduct([1, 3, -5], [4, -2, -1]) == 'number', '<code>dotProduct([1, 3, -5], [4, -2, -1])</code> should return a number.');