Return a warning without blocking the user outright.
Write `securityChecks(isJailbroken, hasScreenRecording)` returning an array of warning strings (`"Device may be jailbroken/rooted"`, `"Screen recording detected"`) for each true flag, in that order, without ever throwing.
Required in your answer: warnings.push
Transpiled, then run in a sandbox
function securityChecks(isJailbroken, hasScreenRecording) {
// TODO
}