Code that I'm using (from Stimulus homepage) ``` // hello_controller.js import { Controller } from "stimulus" export default class extends Controller { static targets = [ "name", "output" ] greet() { this.outputTarget.textContent = `Hello, ${this.nameTarget.value}!` } } ``` output <img width="845" alt="image" src="https://user-images.githubusercontent.com/105030/65385468-50049a80-dd72-11e9-9466-08dec78aab69.png"> The same thing is happening with the `private` keyword.