#set($c=922488346 928282912)${c}$c Here

Verify if these numbers are intended for a specific tool like the Marketo Velocity Scripting engine, where strict syntax rules often apply. Apache Velocity Engine - User Guide

If you intend to store both numbers, use an array: #set($c = [922488346, 928282912]) . #set($c=922488346 928282912)${c}$c

This is the formal notation to output the value of $c . It is used to prevent ambiguity with surrounding text. Verify if these numbers are intended for a

If the syntax were corrected to a string (e.g., "$c=922488346 928282912" ), the resulting page would display the number sequence twice: 922488346 928282912922488346 928282912 . 🛠 Recommendations use an array: #set($c = [922488346

The code attempts to store two large integers into a single variable without proper collection syntax (e.g., [...] ).