I notice that you are using pm.response.json().Key inside the environment set, but in the line above you set that value to the variable name โjsonResponseโ so you can just use jsonResponse[0].key
The bit that you are missing to make this work is the array index. Your response is enclosed in square brackets which means you are working inside of an array. The index of an array starts at 0 so you need to add this when you reference the response variable. Like this;