Unable to generate simulated time series

Hello - I am a very new user to Matlab and Dynare in general. I’ve tried running everything both locally on MacOS Sequoia as well as MatLab online, and in both cases I was unable to generate simulated time series for my endogenous variables c, k, and z. This is the content of the .mod file being used from the course I am taking:

var c k z;
varexo tornado;

parameters a B d rho chi Zbar etasq;
a = 1/3;
B = 0.952;
d = 0.104;
rho = 0.9873632;
chi = 0.0110971;
Zbar = 7.9548197;
etasq = 0.00037256;

model;
c + k - ( 1 - d )*k(-1) = Zbar*z*( k(-1)^a );
( 1/c ) = B*( 1/c(+1) )*( a*Zbar*z(+1)*k^( a - 1 ) + ( 1 - d ) );
log(z) = chi + rho*log( z(-1) ) + tornado;
end;

initval;
c = 95.43012;
k = 265.6293;
z = 2.406462;
end;

shocks;
var tornado = etasq;
end;

steady;
stoch_simul(noprint, order=1,irf=0,periods=1060);

After I run everything, I get the below results but no 1060x1 matrices for c, k, and z as one would expect. I apologize if this is a super basic question, I am just very new to using this. Thank you!

oo_.endo_simul contains the desired simulations. If you want vectors in the main workspace of Dynare 6. Use the send_endogenous_variables_to_workspace command. See Breaking Features in Version 6 · Wiki · Dynare / dynare · GitLab

Thank you, got it!