I have this so far. I want to increment the counter every time a GET request is sent to counter#add. What am I doing wrong?
class CounterController < ApplicationController
  def initialize
    @counter = 0
  end
  def home
  end
  def add
    @counter += 1
  end
end
 
    