How to run multiple cron jobs?

I have two scripts which I'm tying to run one after the other- this is what I've tried:

00 14 * * * /path/one.sh && /path/two.sh

I've also tried putting each script on a different line:

00 14 * * * /path/one.sh
00 14 * * * /path/two.sh

Can this be done?

You first sample is correct.
It runs the second script after the first one, if the exit status was zero (ok).
To unconditionally run the second script

00 14 * * * /path/one.sh; /path/two.sh