JavaScript
// Write makeCounter(): returns { increment(), value() } sharing one
// private counter that nothing outside the object can touch.
function makeCounter() {

}