var currRow = myConn.cursor('SELECT areacode,phone,name FROM employees); // Write each person's name and phone number to the page in the form: // "'s phone number is () " while(currRow.next()){ write(currRow.name + "'s phone number is (" + currRow.areacode + ") "); write(currRow.phone + "
"); } // Close the cursor currRow.close();