- text: <code>myArray</code> should be an <code>array</code>.
testString: 'assert(typeof myArray == ''object'', ''<code>myArray</code> should be an <code>array</code>.'');'
- text: The first item in <code>myArray</code> should be a <code>string</code>.
testString: 'assert(typeof myArray[0] !== ''undefined'' && typeof myArray[0] == ''string'', ''The first item in <code>myArray</code> should be a <code>string</code>.'');'
- text: The second item in <code>myArray</code> should be a <code>number</code>.
testString: 'assert(typeof myArray[1] !== ''undefined'' && typeof myArray[1] == ''number'', ''The second item in <code>myArray</code> should be a <code>number</code>.'');'