Lua script add param_table issue

Hi everyone.
My config;
CubeOrange,
ArduPlane V4.1.0
QuadPlane (H)

-- example for adding parameters to a lua script

-- the table key must be used by only one script on a particular flight
-- controller. If you want to re-use it then you need to wipe your old parameters
-- the key must be a number between 0 and 200. The key is persistent in storage
local PARAM_TABLE_KEY = 72

-- create a parameter table with 2 parameters in it. A table can have
-- at most 63 parameters. The table size for a particular table key
-- cannot increase without a reboot. The prefix "MY_" is used with
-- every parameter in the table. This prefix is used to ensure another
-- script doesn't use the same PARAM_TABLE_KEY.
assert(param:add_table(PARAM_TABLE_KEY, "MY_", 2), 'could not add param table')

-- create two parameters. The param indexes (2nd argument) must
-- be between 1 and 63. All added parameters are floats, with the given
-- default value (4th argument).
assert(param:add_param(PARAM_TABLE_KEY, 1, 'TEST', 3.14), 'could not add param1')
assert(param:add_param(PARAM_TABLE_KEY, 2, 'TEST2', 5.7), 'could not add param2')

gcs:send_text(0, string.format("Added two parameters"))

local paramTest1 = Parameter("MY_TEST")
local paramTest2 = Parameter("MY_TEST2")

function update()
    gcs:send_text(0,"Test")
    --gcs:send_text(0, string.format("param1=%f", paramTest1:get()))
    --gcs:send_text(0, string.format("param2=%f", paramTest2:get()))
   return update, 1000
 end
 
 return update()

I can’t add param_table, it gives an error.
assert(param:add_table(PARAM_TABLE_KEY, “MY_”, 2), ‘could not add param table’)
What is the source of this problem?

12/16/2022 11:44:42 : Lua: No scripts to run
12/16/2022 11:44:42 : Lua: Time: 328 Mem: 33640 + 525
12/16/2022 11:44:42 : nil value (method ‘add_table’)
12/16/2022 11:44:42 : Lua: /APM/scripts/deneme.lua:13: attempt to call a
12/16/2022 11:44:41 : Lua: Running /APM/scripts/deneme.lua
12/16/2022 11:44:41 : AHRS: DCM active
12/16/2022 11:44:41 : ArduPilot Ready